@@ -231,8 +231,24 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
231
231
232
232
* Libraries for working with HTTP.*
233
233
234
- * [ requests] ( http://docs.python-requests.org/ ) - HTTP Requests for Humans™.
235
- * [ httpie] ( https://github.com/jakubroztocil/httpie ) - A command line HTTP client, a user-friendly cURL replacement.
234
+ * Clients
235
+ * [ requests] ( http://docs.python-requests.org/ ) - HTTP Requests for Humans™.
236
+ * [ httpie] ( https://github.com/jakubroztocil/httpie ) - A command line HTTP client, a user-friendly cURL replacement.
237
+ * WSGI Servers
238
+ * [ wsgiref] ( http://docs.python.org/library/wsgiref.html ) - (Python standard library) WSGI reference implementation, single-threaded.
239
+ * [ cherrypy] ( http://www.cherrypy.org/ ) - Multi-threaded and very stable.
240
+ * [ paste] ( http://pythonpaste.org/ ) - Multi-threaded, stable, tried and tested.
241
+ * [ rocket] ( http://pypi.python.org/pypi/rocket ) - Multi-threaded.
242
+ * [ waitress] ( http://readthedocs.org/docs/waitress/en/latest/ ) - Multi-threaded, poweres Pyramid.
243
+ * [ gunicorn] ( http://pypi.python.org/pypi/gunicorn ) - Pre-forked, partly written in C.
244
+ * [ eventlet] ( http://eventlet.net/ ) - Asynchronous framework with WSGI support.
245
+ * [ gevent] ( http://www.gevent.org/ ) - Asynchronous (greenlets).
246
+ * [ diesel] ( http://dieselweb.org/ ) - Asynchronous (greenlets).
247
+ * [ fapws3] ( http://www.fapws.org/ ) - Asynchronous (network side only), written in C.
248
+ * [ tornado] ( http://www.tornadoweb.org/ ) - Asynchronous, powers some parts of Facebook.
249
+ * [ twisted] ( http://twistedmatrix.com/ ) - Asynchronous, well tested but... twisted.
250
+ * [ meinheld] ( http://pypi.python.org/pypi/meinheld ) - Asynchronous, partly written in C.
251
+ * [ bjoern] ( http://pypi.python.org/pypi/bjoern ) - Asynchronous, very fast and written in C.
236
252
237
253
## Database
238
254
@@ -661,7 +677,6 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
661
677
* [ Fabric] ( http://www.fabfile.org/ ) - Tool for streamlining the use of SSH for application deployment or systems administration tasks.
662
678
* [ Fabtools] ( https://github.com/ronnix/fabtools ) - Tools for writing awesome Fabric files.
663
679
* [ cuisine] ( https://github.com/sebastien/cuisine ) - Chef-like functionality for Fabric.
664
- * [ gunicorn] ( http://gunicorn.org/ ) - A WSGI HTTP Server for UNIX, fast clients and sleepy applications.
665
680
* [ Supervisor] ( http://supervisord.org/ ) - A Process Control System.
666
681
* [ psutil] ( https://github.com/giampaolo/psutil ) - A cross-platform process and system utilities module.
667
682
0 commit comments