fastapi
Flask


fastapi | Flask | |
---|---|---|
516 | 142 | |
80,686 | 68,719 | |
2.1% | 0.4% | |
9.9 | 8.7 | |
4 days ago | about 1 month ago | |
Python | Python | |
MIT License | BSD 3-clause "New" or "Revised" License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
fastapi
- Comprendre l'Authentification JWT : De la Théorie à la Pratique
-
Deploying ML projects with Argo CD
5/ You will also need to create an API for deployment, so install FastAPI. Since you have installed a new library, you will also need to freeze the dependencies.
-
Best Backend Frameworks for 2025: A Developer's Guide to Making the Right Choice
FastAPI: Speed with Simplicity
-
Teemoji: Like Tee but with Emojis
You mean, like the fastapi documentation used to be?
https://github.com/fastapi/fastapi/issues/3273
-
How to Dockerize FastAPI
For this tutorial, I assume you have a FastAPI project set up. FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.7+ based on standard Python type hints. If you have a different setup, you might need to adjust the Dockerfile accordingly.
-
Top 20 Python API Frameworks with OpenAPI Support
FastAPI is a modern, high-performance web framework for building APIs with Python 3.6+ based on standard Python type hints. It is designed for quick development and high efficiency. Zuplo is a proud sponsor of the FastAPI project, to help drive API development in Python.
-
How to Promote and Market your API: SPECtacular OpenAPI
For Small teams and Startups I would recommend picking an API framework that automatically generates an OpenAPI spec through your code. Be very careful in which framework you pick as many claim to have OpenAPI support, but in reality only support a few fields. Many recent frameworks are built from the ground up around OpenAPI support. My recommendations are Huma for Go, Tsoa for Typescript, and FastAPI for Python. Your developers will be primarily be responsible for keeping descriptions and summaries up to date, but at least you reduce the risk of having undocumented endpoints or out-of-date documentation.
-
Building a Task Management API with Apache Cassandra and FastAPI
FastAPI Documentation
-
How to Build your very own Google's NotebookLM
FastAPI serves as our backend framework, chosen for several compelling reasons:
-
How to make an API interface?
Spring Boot has simplified the development process to a simple one. For python, I recommend a third-party package for developing API interfaces: fastapi.
Flask
-
How to Create Your First API with Python, Flask and Azure
In this beginner-friendly guide, we will create a simple API using Python and Flask a lightweight and easy-to-use web framework for Python that allows developers to create APIs and web applications quickly. This API will take a number as input and return some basic properties, such as whether it is even or odd, and its square. We will also deploy the API so that it can be accessed from anywhere.
-
Creating an Application with Amazon RDS and MySQL in the Cloud
Flask Documentation. "Flask, Web Development." https://flask.palletsprojects.com/.
-
CRUD With Flask And MySql #1 Introduction
Informasi lengkap mengenai Flask bisa Anda baca di dokumentasi resmi Flask: https://flask.palletsprojects.com/
-
Bootstrap your projects with Docker init
Let's see how it works, with a simple example, running on Flask.
-
Unbundling Content Delivery Network Architecture: How CDN Work
Flask Official Documentation
-
Building Microservices Using Knative
Now that we have installed and configured Knative Serving and Eventing, backed by a kafka cluster hosted on Confluent Cloud, let's create a simple Knative service and deploy the service to the Knative cluster. In this article, we'll build our services using Python utilizing Flask, [Gunicorn[(https://gunicorn.org/)], and Werkzeug to implement the service end-point.
-
Designing a Pure Python Web Framework
On the one hand, there are frameworks like Django and Flask that are great for building production-grade web apps. But they only handle the backend - you still need to use JavaScript and a frontend framework, as well as writing a lot of boilerplate code to connect the frontend and backend.
-
Ask HN: High quality Python scripts or small libraries to learn from
I'd suggest Flask or some of the smaller projects in the Pallets ecosystem:
https://github.com/pallets/flask
-
Rapid Prototyping with Flask, Bootstrap and Secutio
#!/usr/bin/python # # https://flask.palletsprojects.com/en/3.0.x/installation/ # from flask import Flask, jsonify, request contacts = [ { "id": "1", "firstname": "Lorem", "lastname": "Ipsum", "email": "[email protected]", }, { "id": "2", "firstname": "Mauris", "lastname": "Quis", "email": "[email protected]", }, { "id": "3", "firstname": "Donec Purus", "lastname": "Purus", "email": "[email protected]", } ] app = Flask(__name__, static_url_path='', static_folder='public',) @app.route("/contact//save", methods=["PUT"]) def save_contact(id): data = request.json contacts[id - 1] = data return jsonify(contacts[id - 1]) @app.route("/contact/", methods=["GET"]) @app.route("/contact//edit", methods=["GET"]) def get_contact(id): return jsonify(contacts[id - 1]) @app.route('/') def root(): return app.send_static_file('index.html') if __name__ == '__main__': app.run(debug=True)
- Microdot "The impossibly small web framework for Python and MicroPython"
What are some alternatives?
Tornado - Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
django-unicorn - The magical reactive component framework for Django ✨
AIOHTTP - Asynchronous HTTP client/server framework for asyncio and Python
Django - The Web framework for perfectionists with deadlines.
django-ninja - 💨 Fast, Async-ready, Openapi, type hints based framework for building APIs
Robyn - Robyn is a Super Fast Async Python Web Framework with a Rust runtime.
litestar - Production-ready, Light, Flexible and Extensible ASGI API framework | Effortlessly Build Performant APIs
Bottle - bottle.py is a fast and simple micro-framework for python web-applications.
HS-Sanic - Async Python 3.6+ web server/framework | Build fast. Run fast. [Moved to: https://github.com/sanic-org/sanic]
CherryPy - CherryPy is a pythonic, object-oriented HTTP framework. https://cherrypy.dev

