curl http://localhost:5000/todos -d "task=something new" -X POST -v
curl http://localhost:5000/todos/todo3 -d "task=something different" -X PUT -v
parser.add_argument('name', type=int, location='form')
parser.add_argument('PageSize', type=int, location='args')
parser.add_argument('User-Agent', type=str, location='headers')
parser.add_argument('session_id', type=str, location='cookies')
parser.add_argument('picture', type=werkzeug.datastructures.FileStorage, location='files')