Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Revanthraja
/
news-sentiment-analysis
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Revanthraja
commited on
Mar 22, 2025
Commit
fdb73f0
·
verified
·
1 Parent(s):
5e2c0f1
Update api.py
Browse files
Files changed (1)
hide
show
api.py
+2
-1
api.py
CHANGED
Viewed
@@ -42,4 +42,5 @@ def analyze():
42
return jsonify(report)
43
44
if __name__ == '__main__':
45
-
app.run(debug=True)
42
return jsonify(report)
43
44
if __name__ == '__main__':
45
+
app.run(
host='0.0.0.0', port=5000,
debug=True)
46
+