Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NeovisionTech
/
gradio_app
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6160705
gradio_app
/
test_streamlit.py
dupuyta
Upload folder using huggingface_hub
8e2b48f
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
streamlit
as
st
import
pandas
as
pd
st.write(
"""
# My first app
Hello *world!*
"""
)
df = pd.read_csv(
"my_data.csv"
)
st.line_chart(df)