Arvindra Sehmi
Arvindra Sehmi
Hi - I too would like to add my support for this request. In particular it'd be nice to get the name of the file added to the file_uploader. I'd...
@mbenetti Thanks for the hint. I solved the issue by: 1. Deleting everything under ./app/api/spacy/ 2. Replacing... `self.model = spacy.load("./app/api/spacy/", disable=["tagger", "parser"]` with... `self.model = spacy.load("en_core_web_sm", disable=["tagger", "parser"])` 3. In...
I tried the app and there doesn't seem to be an issue. I have WebGL hardware acceleration in my browser flags enabled so not sure if that helps (chrome://flags or...
This doesn't work for me. (I added t.start() and added a sleep wait loop on the text write, and also print to to the console.) The text isn't reported in...
Hi @valkenburg-prevue-ch, Is this a valid example of how you're expecting your solution to be used? ```python # Test the implementation ----------------------------------------------------- panel = st.container(height=100) def do_work(callback, data): nums =...

> Did you verify that your example fails to produce output on the screen if you omit the `with_streamlit_context`-decorator? Yep, it doesn't work without `with_streamlit_context`. Also verified that different app...
Excellent... I have forked the repo and made a folder `lib-crypto-candlesticks` alongside `crypto-candlesticks`. I'm using a branch of the same name. I'll try to put a sample Streamlit app in...
Just to let you know I finished this work last week and am busy building the Streamlit app. I've had to put in some exception handling (replacing the sys exits)...
@suzumenobu2 Did you get a chance to do this?