From df5863936da636769d0dfa90c4203e97185f19b2 Mon Sep 17 00:00:00 2001 From: Vytautas Liuolia Date: Tue, 3 Dec 2024 22:13:46 +0100 Subject: [PATCH] Add the Falcon web framework to ASGI implementations --- docs/implementations.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/implementations.rst b/docs/implementations.rst index fdb4383d..6a7729cd 100644 --- a/docs/implementations.rst +++ b/docs/implementations.rst @@ -97,6 +97,17 @@ Esmerald Esmerald is a modern, powerful, flexible, high performant web framework designed to build not only APIs but also full scalable applications from the smallest to enterprise level. Modular, elagant and pluggable at its core. +Falcon +------ + +*Stable* / https://falconframework.org/ + +Falcon is a no-magic web API and microservices framework, with a focus on +reliability, correctness, and performance at scale. +Supports both WSGI and ASGI, without any hard dependencies outside of the +standard library. + + FastAPI -------