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!
91
91
Flask is default choice for any Python web application that isn't a good
92
92
fit for Django.
93
93
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.
94
107
95
108
Tornado
96
109
--------
You can’t perform that action at this time.
0 commit comments