streamlit-sync icon indicating copy to clipboard operation
streamlit-sync copied to clipboard

feat: adapted to the latested streamlit version 1.23.1

Open zhangzh-pku opened this issue 2 years ago • 3 comments

zhangzh-pku avatar Jun 06 '23 08:06 zhangzh-pku

Hi @zhangzh-pku thanks for opening a PR. First of all, sorry for the mess on this PR. I wanted to quickly fix CI issues from the browser but I'll to dig a bit more into it. This was a hobby project for me so I'll need to find some time to understand what I did at that time :D

In any case, I'm glad to see it's still used. What's your use case for streamlit_sync? :)

Wauplin avatar Jun 06 '23 11:06 Wauplin

Hi @zhangzh-pku thanks for opening a PR. First of all, sorry for the mess on this PR. I wanted to quickly fix CI issues from the browser but I'll to dig a bit more into it. This was a hobby project for me so I'll need to find some time to understand what I did at that time :D

In any case, I'm glad to see it's still used. What's your use case for streamlit_sync? :)

Sorry for the slow reply, I am currently dealing with a scenario where resource loading is relatively heavy, and it's connected to a backend task that takes a long time to process. Therefore, I hope to log some context information about the connection, so I can revisit this task later on.

zhangzh-pku avatar Jun 08 '23 07:06 zhangzh-pku

Upvote for this PR.

My use case is a multi-client service, and the status of each client is stored in backend database; however, I don't want to reload every status from the database frequently. Therefore, the perfect match is stored those status in st.session_state to share between each other.

wirelessr avatar Sep 09 '24 01:09 wirelessr