Calling REST API of a Flask app from another Flask app Calling REST API of a Flask app from another Flask app flask flask

Calling REST API of a Flask app from another Flask app


In your second application you need to updated this line:

response = requests.post(url="http://0.0.0.0:5000/",data=paras)

to refer the full URL of the first application, like::

response = requests.post(url="http://0.0.0.0:5000/hello_world",data=paras)