forked from streamlit/streamlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathst_session_state.py
60 lines (47 loc) · 2.01 KB
/
st_session_state.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2024)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import streamlit as st
from streamlit import runtime
if runtime.exists():
if "checkbox1" not in st.session_state:
st.session_state.checkbox1 = True
def on_checkbox_change(changed_checkbox_number):
if changed_checkbox_number == 1:
st.session_state.checkbox2 = False
elif changed_checkbox_number == 2:
st.session_state.checkbox1 = False
st.checkbox(
label="Checkbox1", key="checkbox1", on_change=on_checkbox_change, args=(1,)
)
st.checkbox(
label="Checkbox2", key="checkbox2", on_change=on_checkbox_change, args=(2,)
)
if "initialized" not in st.session_state:
st.session_state["item_counter"] = 0
st.session_state.attr_counter = 0
st.session_state.initialized = True
if st.button("inc_item_counter"):
st.session_state["item_counter"] += 1
if st.button("inc_attr_counter"):
st.session_state.attr_counter += 1
if st.button("del_item_counter"):
del st.session_state["item_counter"]
if st.button("del_attr_counter"):
del st.session_state.attr_counter
if "item_counter" in st.session_state:
st.write(f"item_counter: {st.session_state['item_counter']}")
if "attr_counter" in st.session_state:
st.write(f"attr_counter: {st.session_state.attr_counter}")
st.write(f"len(st.session_state): {len(st.session_state)}")
st.write(st.session_state)