Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sanch1tx
/
Girl
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Girl
/
app.py
sanch1tx
Create app.py
1e74f2d
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
133 Bytes
from
flask
import
Flask, render_template
app = Flask(__name__)
@app.route(
"/"
)
def
home
():
return
render_template(
"index.html"
)