From 1750a8d154a3d6c5f6c7632efcce38a6d90008aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Thu, 10 Jul 2014 10:24:56 +0100 Subject: [PATCH 1/2] Added netius as a WSGI server It's a stable non blocking async server in pure python. Works with both python 2 and 3. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index dd0f8783..5ef6b90c 100644 --- a/README.md +++ b/README.md @@ -591,6 +591,7 @@ long, literate-programming-style documentation generator. * [paste](http://pythonpaste.org/) - Multi-threaded, stable, tried and tested. * [rocket](http://pypi.python.org/pypi/rocket) - Multi-threaded. * [waitress](https://waitress.readthedocs.org/en/latest/) - Multi-threaded, poweres Pyramid. +* [netius](https://github.com/hivesolutions/netius) - Asynchronous * [gunicorn](http://pypi.python.org/pypi/gunicorn) - Pre-forked, partly written in C. * [fapws3](http://www.fapws.org/) - Asynchronous (network side only), written in C. * [meinheld](http://pypi.python.org/pypi/meinheld) - Asynchronous, partly written in C. From cfc27dac7e2b19f6b1f74471b1082904f6fe1212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Thu, 10 Jul 2014 11:45:10 +0100 Subject: [PATCH 2/2] Added minimal description to netius --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ef6b90c..47691b50 100644 --- a/README.md +++ b/README.md @@ -591,7 +591,7 @@ long, literate-programming-style documentation generator. * [paste](http://pythonpaste.org/) - Multi-threaded, stable, tried and tested. * [rocket](http://pypi.python.org/pypi/rocket) - Multi-threaded. * [waitress](https://waitress.readthedocs.org/en/latest/) - Multi-threaded, poweres Pyramid. -* [netius](https://github.com/hivesolutions/netius) - Asynchronous +* [netius](https://github.com/hivesolutions/netius) - Asynchronous, very fast. * [gunicorn](http://pypi.python.org/pypi/gunicorn) - Pre-forked, partly written in C. * [fapws3](http://www.fapws.org/) - Asynchronous (network side only), written in C. * [meinheld](http://pypi.python.org/pypi/meinheld) - Asynchronous, partly written in C.