adrianpierce commited on
Commit
a9d9e97
·
1 Parent(s): 49f12be

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import pandas as pd
2
+ import streamlit as st
3
+ df = pd.DataFrame(data={'name': ['paper plane', 'old fashioned'], 'ingredients': [['aperol', 'bourbon'], ['bourbon', 'simple syrup']]})
4
+ st.dataframe(df)