This project provides wrapper of default streamlit input widgets(checkbox, multibox, etc.).
With sharable link, you can access with exactly same setting you used.
pip install streamlit-query-wrapper
import streamlit_query_wrapper as stq
stq.radio("Test", ["Hello", "world"])
stq.sharable_link() # shows st.code component with sharable URLNow you can access your page with given link. If you access your page with given URL, all settings you made will be loaded.
Works with basic streamlit input components.
Supports
checkboxradioselectboxmultiselectslidertext_inputnumber_input
Also works with st.sidebar. You can use either stq.sidebar.checkbox, or stq.checkbox in with st.sidebar statement.
As in original streamlit, this module uses label as default key value, and duplicate is not allowed.
