Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
laverdes
/
tester
like
0
Runtime error
App
Files
Files
Community
main
tester
/
app.py
laverdes
Update app.py
af3774a
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
130 Bytes
import
streamlit
as
st
if
st.button(
"Save"
):
with
open
(
"my_file.txt"
,
"w"
)
as
file_out:
file_out.write(
"test_passed"
)