Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
JaiSurya
/
cut-out
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
cut-out
/
main.py
JaiSurya
base app
48bc30e
9 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
169 Bytes
from
gevent.pywsgi
import
WSGIServer
from
app
import
app
if
__name__ ==
'__main__'
:
http_server = WSGIServer((
'0.0.0.0'
,
7860
), app)
http_server.serve_forever()