-
Notifications
You must be signed in to change notification settings - Fork 472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add documentation about how to use Streamlit with multiple threads. #87
Comments
@tvst @randyzwitch I still can't figure out a clear way to import Report Threads. Like others have said, using |
Now you need to use from |
But why is the code snippet below not working. Could you explain how to get that to run @tvst or @dpinol ? import time
import streamlit as st
from threading import Thread
from streamlit.runtime.scriptrunner import add_script_run_ctx
def target():
time.sleep(1)
st.text("thread")
t = Thread(target=target)
add_script_run_ctx(t)
t.start() |
@MoritzNekolla Why am I getting "TypeError: Protocols cannot be instantiated" any clue? |
This is caused by python 3.9.7. Try upgrad/downgrade your python version. |
What should be in the document then? I have a few arguable points though:
3 and 4 are separated because I don't think |
This is issue 87, was created in 2019, and it's still open? Were these docs added and perhaps the issue was never closed? I ended up here, because I upgraded a library that we use and that library is using
|
Created #1154 to document the custom threading stuff (based on my understanding and limited experience) |
TLDR: you either need to use the ReportThread class for your thread, or call add_report_ctx on your thread after creation
The text was updated successfully, but these errors were encountered: