Yuichiro Tachibana (Tsuchiya)
Yuichiro Tachibana (Tsuchiya)
Hi, let me put +1 by sharing a case I encountered. As of 2025/01/30, on Pyodide 0.27.2, the code below raises the following error because `plotly`'s version is resolved as...
Are you trying to access your local files from the stlite app? If so, you should read this section: https://github.com/whitphx/stlite?tab=readme-ov-file#file-system
Superseded by #937
`df.to_parquet()` here is done without any error. https://github.com/whitphx/streamlit/blob/stlite-1.35.0/lib/streamlit/type_util.py#L1131 Maybe the problem is from `fastparquet` and/or `parquet-wasm`? -> Looks like `fastparquet` sets the column metadata `"pandas_type": "mixed"` in this case where...
@dependabot rebase
It is fixed if rebooted
FYI, the below is my current (dirty) workaround to turn off overriding the logger structure by Streamlit and set up the logger in a normal way. ```python # Disable the...
> I'm wondering if the right compromise is just to only set a handler for `getLogger("streamlit")`, and retrieve any child loggers in the standard way without configuring them. Then, I...
@LukasMasuch `asyncio.run` throws an error on Pyodide ("RuntimeError: asyncio.run() cannot be called from a running event loop") so perhaps it doesn't work on stlite, while it's a good fix for...
I think it's not a problem and stlite should solve this problem by itself for its case. This is a workaround for it: https://github.com/whitphx/streamlit/pull/11 where `st.write_stream()` is turned to be...