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.
Built on the use-local-storage-state
that allows for real time updates especially important when local storage item is deleted.
for more details:
https://www.npmjs.com/package/use-local-storage-state
pip install streamlit-local-storage
store items to local storage
from streamlit_local_storage import LocalStorage
localS = LocalStorage()
itemKey = "camera"
itemValue = "Tarah"
localS.setItem(itemKey, itemValue)
get item from local storage
itemKey = "Taylor Swift"
local_storage_item = localS.getItem(itemKey)
get all items saved on local storage
saved_individual = localS.getAll()
st.write(saved_individual)
delete all
localS.deleteAll()
when getting local storage items with streamlit widgets
st.subheader("Method 1")
def LocalStorageManager():
return LocalStorage()
localS = LocalStorageManager()
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"])
### When using callbacks for get item, can use the below example. But it wont reveal data unless app has rendered twice. But callback can be work without a hitch generally (based on my tests).
st.subheader("Method 2 - using callback. Does not load instantly especially for get storage")
def LocalStorageManager():
return LocalStorage()
localS = LocalStorageManager()
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/run method and value will be stored in `session_state`
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"])
Remember to refresh browser if it does not pop up instantly in local storage.
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.16.tar.gz
(537.8 kB
view hashes)
Built Distribution
Close
Hashes for streamlit-local-storage-0.0.16.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e421e0e0b5a48689479f23629b1458734768e3bf39239b14bb080a9180e87ad8 |
|
MD5 | 7a230ff8acce62e2159a5660e09440fa |
|
BLAKE2b-256 | ad4edb4dc2f215496e62e08e0af7b77f948b71820cc76874916dc8bd949b7358 |
Close
Hashes for streamlit_local_storage-0.0.16-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73d1b41852f5f829c4aabf5335d431cd55e512303b17d87a88d8b3a6daa132ec |
|
MD5 | c4dabd2f39c34ea15c9582bce6669cb6 |
|
BLAKE2b-256 | 849ebe812344c58b1f61ba6e4c49b642038a38de843364f7c5f710c280d58a31 |