Alexander Martin
Alexander Martin
@snehankekre any updates on the product side of things? Would like for this branch to not get too stale if you're still thinking of merging it.
@snehankekre all great points! I'm happy to rebase this to just the JS side of things and keep the python stuff around in a separate branch to be sprinkled in...
Ok I think everything is passing on https://github.com/Asaurus1/streamlit/pull/3 now so it should pass here.
@snehankekre any blockers to merging this? If we're still waiting on product team for the js-only changes that's alright.
> So I was actually trying to make a step in a direction where I can use query params as sharable page state. Creating links with query params is just...
`switch_page` does actually send the current query params with the rerun data: ``` ctx.script_requests.request_rerun( RerunData( query_string=ctx.query_string, page_script_hash=matched_pages[0]["page_script_hash"], ) ) ``` But @sfc-gh-jcarroll I think the current behavior is to throw...
Duplicate of https://github.com/streamlit/streamlit/issues/8112
I also want this! And am happy to add it if product approves.
> Can't you just st.write to st.empty on new chunk? Yep, I've done this in some places. You can store the result of every generator yield in a buffer and...
You get the syntax highlighting if you call `st.code` instead of `write`.