WinError 10061 after making a POST request to my own localhost in Flask

Solution
@app.route("/"):
def index():
    res = requests.post('http://localhost:5000/test', json={'name': 'Linus Torvalds'})
    return res