Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Duplicated from
MakiAi/demo-flask-docker-template
MakiAi
/
PicMove
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
PicMove
/
api_server.py
HALU-HAL
Create api_server.py
6db4668
almost 3 years ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
196 Bytes
# app.py
from
flask
import
Flask, render_template
app = Flask(__name__)
@app.route(
'/'
)
def
index
():
return
render_template(
'index.html'
)
if
__name__ ==
'__main__'
:
app.run(debug=
True
)