Congratulations on making it to the final lesson of this course! So far, we've learned how to create individual endpoints using the HTTP methods: GET, POST, PUT, and DELETE in FastAPI. Now, it's time to integrate everything and create a FastAPI application that supports multiple HTTP methods.
Remember, each HTTP method serves a distinct purpose:
GET
is used to retrieve data.POST
is used to add new data.PUT
is used to update existing data.DELETE
is used to remove data.
Let's put this knowledge into action and build our final application.
First, let's set up our FastAPI application and establish the mock database we'll be utilizing:
This code block imports necessary modules, sets up the FastAPI application as app
, and initializes a list crew
serving as our mock database, which we'll be using throughout this lesson.
Recalling from our first unit, we understood how to create asynchronous endpoints. Let's recreate our GET
method endpoint to read a specific crew member's details:
This code block defines an endpoint that responds to the GET
HTTP method, accepting an integer crew_id
as a path parameter. It then loops through the crew
list to find and return the matched crew member. If no match is found, a message is returned indicating the crew member was not found.
Following that, we learned about the POST
method for adding data. Just like we did before, we'll implement an endpoint to add a new crew member:
This endpoint handles the POST
method and adds a new crew member to our list. The incoming request body is parsed for name and role data. A new ID
is created, and then a new crew member is added with this ID. The details of the new crew member are then returned.
Can you remember the third unit? We discussed the PUT
method for updating existing data. Let's recreate our endpoint for updating crew member details:
In this code block, we define a PUT
endpoint. By parsing the incoming request body for updated name and role data, we can successfully update the existing member's details in our crew list. If the crew member doesn't exist, a message is returned.
Lastly, we learned about the DELETE
method for removing data. Here's how we developed the endpoint to delete a crew member:
This endpoint responds to the DELETE
method. It removes the crew member with the supplied crew_id
from our list. In case the crew member is not found, an appropriate message is returned.
In this lesson, our focus was to integrate our knowledge of various HTTP methods. We began by setting up a FastAPI application, then we reviewed each HTTP method, and created respective endpoints supporting each method in our application.
Learning is all about practice. It helps cement new knowledge and techniques and builds confidence. So, we have a set of exercises following this lesson. Give them a go!
