File size: 150 Bytes
8e2b48f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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)