Streamlit component that allows you to do manage local storage
Project description
Streamlit local storage
This repo is to help streamlt users manage data in a browser's local storage.
pip install streamlit-local-storage
from streamlit_local_storage import LocalStorage
localS = LocalStorage()
store an array to local storage
localStorageArray = [
{"key":"Games", "toStore":[{"name":"Basically does this work"}]},
{"key":"Winners", "toStore":[{"name":"Basically does this work Though"}]}
]
localS.setList(localStorageArray)
store individual items from local storage
itemKey = "camera"
itemValue = "Tarah"
localS.set(itemKey, itemValue)
get list of items from local storage
data_ = [{"key":"camera"}, {"key":"JamesLook"}]
saved_ = localS.getList(data_)
st.write(saved_)
get all items saved on local storage
saved_individual = localS.getAll()
st.write(saved_individual)
when getting local storage items with streamlit widgets
st.subheader("Method 1")
localS = LocalStorage()
if "get_val" not in st.session_state:
st.session_state["get_val"] = None
with st.form("get_data"):
st.text_input("key", key="get_local_storage_v")
st.form_submit_button("Submit")
if st.session_state["get_local_storage_v"] != "":
val_ = localS.getItem(st.session_state["get_local_storage_v"], key="test_get_item")
st.session_state["get_val"] = val_
st.write(st.session_state["get_val"])
st.subheader("Method 2 - using callback")
localS = LocalStorage()
if "get_val_2" not in st.session_state:
st.session_state["get_val_2"] = None
if "st_col_test" not in st.session_state:
st.session_state["st_col_test"] = None
def change_state_2():
with st.session_state["st_col_test"][0]: # call method from below form
localS.getItem(st.session_state["get_local_storage_v_2"], key="test_get_item_2") # initialise it to get the value
with st.form("get_data_2"):
st.text_input("key", key="get_local_storage_v_2")
st.form_submit_button("Submit", on_click=change_state_2)
st.session_state["st_col_test"] = st.columns(1) #to make sure rendering happens below form (or other streamlit element. Else the re-rendering of component upon re-running of up will be run at the top of the streamlit component (form here) which creates nasty ui experience.)
if "test_get_item_2" in st.session_state and st.session_state["test_get_item_2"] != None:
st.session_state["get_val_2"] = st.session_state["test_get_item_2"] # if local storage method is initialised, get the stored value and use it throughout the app.
st.write(st.session_state["get_val_2"])
delete item and item list from local storage
saved_individual = localS.deleteList([{"key": "ThomasKing"}, {"key":"Somethingelse"}])
localS.deleteItem('Tony')
delete all
localS.deleteAll()
get all
localS.getAll()
Remember to refresh browser if it does not pop up instantly.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
streamlit-local-storage-0.0.6.tar.gz
(443.9 kB
view hashes)
Built Distribution
Close
Hashes for streamlit-local-storage-0.0.6.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0ec2a6968bdcab4d70a172380cc8ec1a504307f19a39de9d7da879b145a4288 |
|
MD5 | a5d26970ac2881b04e1317c6b70dc002 |
|
BLAKE2b-256 | 7e4bbf566d26d9c8c1eb33f3639d0afdd15303b523ebeee7ef7c75c3cc19e80e |
Close
Hashes for streamlit_local_storage-0.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dedc6ad60c5daa1397576357ed58e238fc1b8e4d126babe62126052d7e803919 |
|
MD5 | ae10179b33474865bfcaa8829588ee13 |
|
BLAKE2b-256 | d53f193be3038b38c140d687a8c6cf47b4eec112a433472a9e01dbe04bc3c92f |