gradio_app / test_streamlit.py
dupuyta's picture
Upload folder using huggingface_hub
8e2b48f
raw
history blame contribute delete
No virus
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)