Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Flask: Echo POST - client

  • request
  • request.form
  • curl
curl --data "text=Sancho Panza" http://localhost:5000/echo
import requests

res = requests.get('http://localhost:5000/')
print(res.status_code)
print(res.text)


res = requests.post('http://localhost:5000/echo', data={"text": "Hello World!"})
print(res.status_code)
print(res.text)