Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
issai
/
KazSandra
like
0
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
d74ac86
KazSandra
/
app.py
lgblkb
First commit
d74ac86
8 months ago
raw
Copy download link
history
blame
212 Bytes
from
pathlib
import
Path
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)
hub_folder = Path(
'~/.cache/huggingface/hub'
)
for
path
in
hub_folder.walk():
st.write(path)