not working

This commit is contained in:
kaiyuran 2024-11-19 13:21:23 -05:00
parent b8abf7f7d0
commit 533fc4a9bc
2 changed files with 6 additions and 3 deletions

5
app.py
View file

@ -203,8 +203,11 @@ def emojify(message):
app = Flask(__name__)
CORS(app)
if __name__ == "__main__":
app.run(port=5000)
# if __name__ == "__main__":
# app.run(port=5500)
# app.run(host='0.0.0.0', port=5501)
@app.route('/getemoji', methods=['GET'])
# @cross_origin()

View file

@ -1,7 +1,7 @@
import requests
url = "http://127.0.0.1:5000/getemoji"
url = "http://127.0.0.1:5501/getemoji"
# url = "http://37.27.51.34:5501/getemoji"
params = {
"message": "I love chocolate donuts. I laugh at funny jokes about it. I think it is amazing."
}