This is a REST Api that accepts GET, PUT, DELETE AND POST requests. It is built on top of a database containing different names of people and other information about them
GET request: The GET request enables you to get all users and their metadata from the database
POST request: This enables you to create new users and add to the database. You also get an api_key for authentication purposes
PUT/UPDATE request: To perform a put request, you need to authenticate yourself by providing your api key, which you got during registration
DELETE request: This enables you to delete a user by providing the user's api_key.
git clone https://github.com/Omotunde2005/REST_API_with_FastApi.git
python uvicorn main:app