Python Marshmallow tutorial for HTTP Request Body JSON parsing & validation
- Start the server
(venv) $ python app.py- To invoke API through
curlcommand
$ curl
--request POST
--data '@request-body.json'
--header 'Content-Type: application/json'
'http://localhost:5000/project'