initial commit
This commit is contained in:
2
frontend/.streamlit/config.toml
Normal file
2
frontend/.streamlit/config.toml
Normal file
@@ -0,0 +1,2 @@
|
||||
[server]
|
||||
enableXsrfProtection = false
|
10
frontend/main.py
Normal file
10
frontend/main.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import pandas as pd
|
||||
import streamlit as st
|
||||
|
||||
st.title("Hello world!")
|
||||
|
||||
uploaded_file = st.file_uploader("Choose a file")
|
||||
if uploaded_file is not None:
|
||||
df = pd.read_csv(uploaded_file)
|
||||
st.write(df.head(10))
|
||||
st.write(df.tail(10))
|
Reference in New Issue
Block a user