akooiker commited on
Commit
89e6a9b
·
1 Parent(s): 1e7515f

first commit

Browse files
Files changed (1) hide show
  1. testApp.py +10 -0
testApp.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+
5
+ st.title('My test App')
6
+ st.write("Here's our first attempt at using data to create a ***table***:")
7
+ st.write(pd.DataFrame({
8
+ 'first col': [1, 2, 3, 4],
9
+ 'second col': [10, 20, 30, 40]
10
+ }))