added basic version
Browse files- app.py +9 -0
- requirements.txt +0 -0
app.py
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import pandas as pd
|
3 |
+
|
4 |
+
st.write("Here's our first attempt at using data to create a table:")
|
5 |
+
st.write(pd.DataFrame({
|
6 |
+
'first column': [1, 2, 3, 4],
|
7 |
+
'second column': [10, 20, 30, 40]
|
8 |
+
}))
|
9 |
+
|
requirements.txt
ADDED
File without changes
|