AAhad commited on
Commit
f702539
·
1 Parent(s): a8b2b26

added basic version

Browse files
Files changed (2) hide show
  1. app.py +9 -0
  2. 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