Thiago Teixeira
Thiago Teixeira
### Target Use Case Hi there! At [Streamlit](https://github.com/streamlit/streamlit), we bring PyDeck in as a dependency because (1) we love it and use it in the `streamlit hello` app that most...
See: https://discuss.streamlit.io/t/is-there-a-way-to-specify-column-width-for-dataframe-table/333 `st.dataframe` tries to be smart about column sizes, but often misses the mark — so users end up with dataframes that have truncated/ellipsized values. On Jupyter, you can...
What if every output element could also serve as an input widget? Then you could do things like: * User clicks on chart datapoint → python script receives the value...
See a possible solution here: https://gist.github.com/tvst/fa33b9dcb58040cbcb0ea376146d4e8c and see https://discuss.streamlit.io/t/live-plot-from-a-thread/247 for context. A few thoughts on that Gist: 1. Can we make that API match the one from `st`? That is,...
TLDR: you either need to use the ReportThread class for your thread, or call add_report_ctx on your thread after creation
See: https://discuss.streamlit.io/t/streamlit-restful-app/409 Some users would like to have their Streamlit servers work double duty as both a Streamlit app server and a data server (for REST endpoints, for example) ###...
Today, we're able to create text in RTL languages using `st.write` without any special markup around them, relying on browser detection only. But this has two known problems: 1. Text...