File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,19 @@ suit your needs. Or, you can easily use any library you want yourself!
9191Flask is default choice for any Python web application that isn't a good
9292fit for Django.
9393
94+ Falcon
95+ ------
96+
97+ `Falcon <https://falconframework.org/ >`_ is a good choice when your goal is
98+ to build RESTful API microservices that are fast and scalable.
99+
100+ It is a reliable, high-performance Python web framework for building large-scale
101+ app backends and microservices. Falcon encourages the REST architectural style of
102+ mapping URIs to resources, trying to do as little as possible while remaining highly effective.
103+
104+ Falcon highlights four main focuses: speed, reliability, flexibility and debuggability.
105+ It implements HTTP through "responders" such as ``on_get() ``, ``on_put() ``, etc.
106+ These responders receive intuitive request and response objects.
94107
95108Tornado
96109--------
You can’t perform that action at this time.
0 commit comments