Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cbensimon
/
streamlit-log
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
197f3ea
streamlit-log
/
app.py
cbensimon
HF Staff
Update app.py
197f3ea
about 3 years ago
raw
Copy download link
history
blame
Safe
107 Bytes
import
streamlit
as
st
x = st.text_input(
'This will be console logged'
)
st.write(
'Message :'
, x)
print
(x)