Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
stable13
/
test
like
0
Sleeping
App
Files
Files
Community
main
test
/
app.py
stable13
Update app.py
eaaedfe
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
239 Bytes
from
flask
import
Flask, jsonify, render_template, request, send_file
app = Flask(__name__)
@app.route(
"/"
)
def
emotion
():
return
jsonify({
"output"
:
"output"
})
if
__name__ ==
"__main__"
:
app.run(host=
"0.0.0.0"
, port=
7860
)