Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
adrianpierce
/
cocktails
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
adrianpierce
commited on
Sep 13, 2023
Commit
a9d9e97
·
1 Parent(s):
49f12be
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
ADDED
Viewed
@@ -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)