Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ytaek-oh
/
table
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
table
/
app.py
ytaek-oh
add files
c26c770
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
187 Bytes
import
ast
import
json
import
os
import
pandas
as
pd
import
streamlit
as
st
# Streamlit app
def
main
():
st.title(
"Tables"
)
if
__name__ ==
"__main__"
:
main()