Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b51c63c

Browse files
author
miguel
committed
added WSGI HTTP servers. descriptions from Bottle docs
1 parent 33c5044 commit b51c63c

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,24 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
231231

232232
*Libraries for working with HTTP.*
233233

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.
236252

237253
## Database
238254

@@ -661,7 +677,6 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
661677
* [Fabric](http://www.fabfile.org/) - Tool for streamlining the use of SSH for application deployment or systems administration tasks.
662678
* [Fabtools](https://github.com/ronnix/fabtools) - Tools for writing awesome Fabric files.
663679
* [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.
665680
* [Supervisor](http://supervisord.org/) - A Process Control System.
666681
* [psutil](https://github.com/giampaolo/psutil) - A cross-platform process and system utilities module.
667682

0 commit comments

Comments
 (0)