Introducing FastAPI

Saurabh Pandey
4 min readMay 10, 2023

--

FastAPI is a modern, high-performance web framework for building APIs with Python, based on standard Python type hints. It is designed to be easy to use and to provide automatic validation of request and response data, resulting in faster development times and fewer bugs. FastAPI was created by Sebastián Ramírez and has quickly gained popularity due to its performance, ease of use, and extensive documentation.

FastAPI is built on top of the Starlette framework for asynchronous web applications and the Pydantic library for data validation and serialization. It is primarily used for creating RESTful APIs, which serve as the backend for web applications or as an interface for other systems to interact with your application’s data and services.

Here’s a basic overview of how FastAPI is used:

  • Install FastAPI and an ASGI server like Uvicorn: You can install FastAPI and Uvicorn using pip, the Python package manager.
pip install fastapi uvicorn
  • Create a Python script: Create a new Python script (e.g., main.py) and import FastAPI.
from fastapi import FastAPI

app = FastAPI()
  • Define API routes and functions: Use FastAPI’s decorators, like @app.get() or @app.post(), to define routes for your API. These decorators map HTTP methods (GET, POST, etc.) to specific functions that handle the requests.
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
def read_root():
return {"Hello": "World"}

@app.get("/items/{item_id}")
def read_item(item_id: int, q: str = None):
return {"item_id": item_id, "q": q}
  • Run the application: Start the ASGI server (Uvicorn) to run your FastAPI application. In the terminal, run the following command:
uvicorn main:app --reload
  • Access the API: After starting the server, you can access the API through a web browser or any HTTP client (e.g., curl, Postman, or a frontend web application). FastAPI also generates interactive API documentation (by default, available at /docs) that allows you to explore and test your API endpoints easily.

FastAPI is used in a variety of applications, from simple web APIs to complex, data-intensive applications. Its performance and intuitive design make it a popular choice for developers looking to create efficient and reliable APIs with Python.

FastAPI has its own advantages and disadvantages when compared to other popular web frameworks like Django (Python) and Express (Node.js). Here’s a comparison of the three frameworks:

FastAPI:

Pros:

  1. High performance: FastAPI is designed for speed and has a reputation for excellent performance, often outperforming other Python frameworks and even some Node.js frameworks.
  2. Type hinting and automatic validation: FastAPI leverages Python’s type hints to automatically validate request and response data, reducing the need for manual validation and decreasing the likelihood of bugs.
  3. Automatic API documentation: FastAPI automatically generates interactive API documentation (using Swagger UI and ReDoc) based on your code, making it easy to explore and test your API endpoints.
  4. Asynchronous support: FastAPI has built-in support for asynchronous programming with Python’s asyncio library, which can help improve performance in I/O-bound applications.
  5. Easy learning curve: FastAPI’s intuitive design and extensive documentation make it relatively easy to learn and use.

Cons:

  1. Younger ecosystem: Compared to Django and Node.js, FastAPI is relatively new, which means that it may have fewer third-party packages and a smaller community.
  2. Less feature-rich: FastAPI is focused primarily on building APIs, so it may lack some of the additional features and tools that other web frameworks like Django provide out of the box.

There are several reasons why one might prefer FastAPI over Django and Node.js (Express) for certain types of projects. Here are some key factors that may influence the decision to choose FastAPI:

  1. High performance: FastAPI is known for its excellent performance, often surpassing other Python frameworks like Django and even some Node.js frameworks. If you’re building an API that needs to handle a large number of requests with low latency, FastAPI can be a great choice.
  2. Automatic data validation and serialization: FastAPI uses Python’s type hints to automatically validate request and response data, which can save development time and reduce the likelihood of bugs. This feature can be particularly helpful when building APIs with complex data structures or strict validation requirements.
  3. Asynchronous support: FastAPI has built-in support for asynchronous programming using Python’s asyncio library. This can lead to better performance in I/O-bound applications, such as those that rely heavily on external APIs or databases. Django, while having added asynchronous support in version 3.1, doesn't have as seamless async support as FastAPI.
  4. Automatic API documentation: FastAPI automatically generates interactive API documentation based on your code, making it easy for developers and users to explore and test your API endpoints. This can be a time-saver during development and a valuable resource for API consumers.
  5. Easier learning curve: FastAPI is designed to be intuitive and easy to use, with a focus on developer experience. Its extensive documentation and the use of familiar Python constructs can make it easier to learn and use compared to other frameworks like Django, which might require learning additional concepts and components.

However, it’s essential to keep in mind that the choice of a web framework should be based on the specific requirements and constraints of your project. FastAPI might be a better fit for some projects, while Django or Node.js (Express) could be more suitable for others. Factors such as existing infrastructure, team expertise, and project requirements should all be taken into account when making this decision.

Resources for learning more about FastAPI:

  1. Official FastAPI documentation: https://fastapi.tiangolo.com/
  2. FastAPI GitHub repository: https://github.com/tiangolo/fastapi
  3. FastAPI tutorial by Sebastián Ramírez: https://www.youtube.com/watch?v=3dlGs6h-54M&list=PLpBVag6EhCu21JNIgqrCJbUZGXQD6EmUc
  4. FastAPI course on TestDriven.io: https://testdriven.io/courses/fastapi/

--

--

No responses yet