Spaces:
Sleeping
Sleeping
File size: 11,375 Bytes
a16ad43 8caf9d5 3955dc3 de165ef a16ad43 de165ef c9e23c5 de165ef c9e23c5 de165ef 3955dc3 970dd77 3955dc3 de165ef 970dd77 de165ef 7c39d11 de165ef 7c39d11 de165ef 970dd77 de165ef 970dd77 de165ef 970dd77 de165ef 970dd77 6aac964 a2054cf 6aac964 a2054cf a16ad43 6aac964 a16ad43 6aac964 a16ad43 |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 |
import streamlit as st
import time
# def submit_callback():
# st.session_state.clicked = False
# handle the user_input here
# st.write("Product: " + st.session_state.product)
# st.write("Gender: " + st.session_state.gender)
# st.write("Profession: " + st.session_state.profession)
# st.write("Hobby: "+ st.session_state.hobby)
col1, col2=st.columns(2)
with col1:
with st.container(height=500):
with st.form("my_input", clear_on_submit=True, border=False):
st.write("Input")
# product
product=st.text_input("product", key="product")
# gender
gender=st.radio("gender", ["male", "female"], key="gender")
# profession
profession=st.text_input("profession", key="profession")
# hobby
hobby=st.text_input("hobby", key="hobby")
# Every form must have a submit button.
# submitted = st.form_submit_button(label='Submit', on_click=submit_callback)
submitted = st.form_submit_button(label='Submit')
with col2:
if submitted:
with st.spinner('Wait for it...'):
time.sleep(5)
with st.container(height=500):
placeholder = st.empty()
# Replace the chart with several elements:
with placeholder.container():
st.write("Product: " + st.session_state.product)
st.write("Gender: " + st.session_state.gender)
st.write("Profession: " + st.session_state.profession)
st.write("Hobby: "+ st.session_state.hobby)
if 'clicked' not in st.session_state:
st.session_state.clicked = False
def click_button():
st.session_state.clicked = True
st.button('Clear', on_click=click_button)
if st.session_state.clicked:
# The message and nested widget will remain on the page
del st.session_state.product
del st.session_state.gender
del st.session_state.profession
del st.session_state.hobby
del st.session_state.clicked
if submitted:
placeholder.empty()
# Clear all those elements:
# placeholder.empty()
# if clear:
# del st.session_state.product
# del st.session_state.gender
# del st.session_state.profession
# del st.session_state.hobby
# placeholder.empty()
# container1 = st.container(border=True)
# col1, col2 = st.columns(2)
# with col1:
# container1 = col1.container(height=3000, )
# with col2:
# container2 = col2.container(height=300)
# placeholder = st.empty()
# placeholder = st.empty()
# # Create two columns
# col1, col2 = st.columns(2)
# # Place a form in each column
# with col1:
# def submit_callback():
# st.write("Product: " + st.session_state.product)
# st.write("Gender: " + st.session_state.gender)
# st.write("Profession: " + st.session_state.profession)
# st.write("Hobby: "+ st.session_state.hobby)
# def delete_callback():
# del st.session_state.product
# del st.session_state.gender
# del st.session_state.profession
# del st.session_state.hobby
# placeholder.empty()
# import streamlit as st
# import time
# class SessionState:
# def __init__(self):
# self.product = ""
# self.gender = ""
# self.profession = ""
# self.hobby = ""
# state = SessionState()
# def submit_callback():
# with output_placeholder.container():
# st.write("Product: " + state.product)
# st.write("Gender: " + state.gender)
# st.write("Profession: " + state.profession)
# st.write("Hobby: "+ state.hobby)
# def delete_callback():
# state.product = ""
# state.gender = ""
# state.profession = ""
# state.hobby = ""
# output_placeholder.empty()
# form_placeholder = st.empty()
# output_placeholder = st.empty()
# submitted = False
# clear = False
# with form_placeholder.form("my_form", clear_on_submit=True):
# st.write("Input")
# # product
# state.product = st.text_input("product", value=state.product, key="product")
# # gender
# state.gender = st.radio("gender", ["male", "female"], value=state.gender, key="gender")
# # profession
# state.profession = st.text_input("profession", value=state.profession, key="profession")
# # hobby
# state.hobby = st.text_input("hobby", value=state.hobby, key="hobby")
# # Every form must have a submit button.
# btn1, btn2=st.columns(2)
# with btn1:
# submitted = st.form_submit_button(label='Submit')
# with btn2:
# clear = st.form_submit_button(label='Clear')
# if clear:
# delete_callback()
# if submitted:
# submit_callback()
# def submit_callback():
# with output_placeholder.container():
# st.write("Product: " + st.session_state.product)
# st.write("Gender: " + st.session_state.gender)
# st.write("Profession: " + st.session_state.profession)
# st.write("Hobby: "+ st.session_state.hobby)
# def delete_callback():
# del st.session_state.product
# del st.session_state.gender
# del st.session_state.profession
# del st.session_state.hobby
# output_placeholder.empty()
# form_placeholder = st.empty()
# output_placeholder = st.empty()
# with form_placeholder.form("my_input", clear_on_submit=True):
# st.write("Input")
# # product
# product=st.text_input("product", key="product")
# # gender
# gender=st.radio("gender", ["male", "female"], key="gender")
# # profession
# profession=st.text_input("profession", key="profession")
# # hobby
# hobby=st.text_input("hobby", key="hobby")
# # Every form must have a submit button.
# btn1, btn2=st.columns(2)
# with btn1:
# submitted = st.form_submit_button(label='Submit', on_click=submit_callback)
# # submitted = st.form_submit_button(label='Submit')
# with btn2:
# clear = st.form_submit_button(label='Clear', on_click=delete_callback)
# if submitted:
# # handle the user_input here
# st.write("Product: " + st.session_state.product)
# st.write("Gender: " + st.session_state.gender)
# st.write("Profession: " + st.session_state.profession)
# st.write("Hobby: "+ st.session_state.hobby)
# if clear:
# del st.session_state.product
# del st.session_state.gender
# del st.session_state.profession
# del st.session_state.hobby
# placeholder.empty()
# # with col2:
# _LOREM_IPSUM = (
# "product" + str(st.session_state.product) + "\n"
# + "gender" + str(st.session_state.gender) + "\n"
# + "profession" + str(st.session_state.profession) + "\n"
# + "hobby" + str(st.session_state.hobby) +"\n"
# )
# def stream_data():
# for word in _LOREM_IPSUM.split(" "):
# yield word + " "
# time.sleep(0.02)
# if st.button("Stream data"):
# st.write_stream(stream_data)
# placeholder = st.empty()
# with placeholder.container():
# st.write("Hello")
# import streamlit as st
# class SessionState:
# def __init__(self):
# self.input_text = ""
# state = SessionState()
# with st.form("my_form"):
# state.input_text = st.text_input("Enter something:", value=state.input_text)
# clear_button = st.form_submit_button("Clear")
# submit_button = st.form_submit_button("Submit")
# if clear_button:
# state.input_text = ""
# if submit_button:
# # handle the user_input here
# st.write(f"You submitted: {state.input_text}")
# import streamlit as st
# import time
# class SessionState:
# def __init__(self):
# self.product = ""
# self.gender = ""
# self.profession = ""
# self.hobby = ""
# state = SessionState()
# def submit_callback():
# output_placeholder.write("Product: " + state.product)
# output_placeholder.write("Gender: " + state.gender)
# output_placeholder.write("Profession: " + state.profession)
# output_placeholder.write("Hobby: "+ state.hobby)
# def delete_callback():
# state.product = ""
# state.gender = ""
# state.profession = ""
# state.hobby = ""
# output_placeholder.empty()
# form_placeholder = st.empty()
# output_placeholder = st.empty()
# with form_placeholder.form("my_form"):
# st.write("Input")
# # product
# state.product = st.text_input("product", value=state.product, key="product")
# # gender
# state.gender = st.radio("gender", ["male", "female"], value=state.gender, key="gender")
# # profession
# state.profession = st.text_input("profession", value=state.profession, key="profession")
# # hobby
# state.hobby = st.text_input("hobby", value=state.hobby, key="hobby")
# # Every form must have a submit button.
# btn1, btn2=st.columns(2)
# with btn1:
# submitted = st.form_submit_button(label='Submit')
# with btn2:
# clear = st.form_submit_button(label='Clear')
# if clear:
# delete_callback()
# if submitted:
# # handle the user_input here
# submit_callback()
# _LOREM_IPSUM = """
# Lorem ipsum dolor sit amet, **consectetur adipiscing** elit, sed do eiusmod tempor
# incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
# nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
# """
# def stream_data():
# for word in _LOREM_IPSUM.split(" "):
# yield word + " "
# time.sleep(0.02)
# for word in _LOREM_IPSUM.split(" "):
# yield word + " "
# time.sleep(0.02)
# if st.button("Stream data"):
# st.write_stream(stream_data)
# import streamlit as st
# import SessionState
# from streamlit.server.server import Server
# import streamlit.report_thread as ReportThread
# # Initialize session state
# session_state = SessionState.get(product="", gender="", profession="", hobby="")
# # Create a form for user inputs
# with st.form("my_input"):
# st.write("Input")
# # product
# product = st.text_input("product", value=session_state.product)
# # gender
# gender = st.radio("gender", ["male", "female"], index=["male", "female"].index(session_state.gender) if session_state.gender else 0)
# # profession
# profession = st.text_input("profession", value=session_state.profession)
# # hobby
# hobby = st.text_input("hobby", value=session_state.hobby)
# # Every form must have a submit button.
# submitted = st.form_submit_button("Submit")
# clear = st.form_submit_button("Clear")
# # Display the user inputs
# with st.form("my_output"):
# if submitted and not clear:
# # Save inputs to session state
# session_state.product = product
# session_state.gender = gender
# session_state.profession = profession
# session_state.hobby = hobby
# st.write("product", product)
# st.write("gender", gender)
# st.write("profession", profession)
# st.write("hobby", hobby)
# # Clear the user inputs
# if clear:
# # Clear session state
# session_state.product = ""
# session_state.gender = ""
# session_state.profession = ""
# session_state.hobby = ""
# st.experimental_rerun()
|