- Download and install Python3 from here
- About fastapi link
- pip install fastapi
- python3 server.py
- curl --header 'Content-Type: application/json' --request POST --data '{"name": "satish", "surname": "manpuri"}' http://0.0.0.0:9000/user -v
- curl --header 'Content-Type: application/json' --request GET http://0.0.0.0:9000/users -v | json_pp
- curl --header "Content-Type: application/json" --request DELETE http://localhost:9000/users/satish -v
- Postman installation link