Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
vasudevgupta
/
test
like
0
Sleeping
App
Files
Files
Community
8f85ef4
test
/
app.py
vasudevgupta
Create new file
8f7ce06
about 2 years ago
raw
Copy download link
history
blame
Safe
134 Bytes
from
dash
import
Dash, HTML
app = Dash(__name__)
app.layout = html.Div(html.H1(
"Coool stuff"
))
app.run_server(debug=
True
, port=
8080
)