fsadeek's picture
Commit
9c97ad5
raw
history blame
115 Bytes
import streamlit as st
import pandas as pd
st.title('My first app')
data = pd.read_csv('demo.csv')
st.write(data)