I wrote an implementation based on the waitress web server : https://github.com/gawel/aiowsgi
It has almost the same characteristics as a waitress (at least with ab -ka small application). It can become faster than a waitress if you use many ready-made third-party libraries for asynchronous access.
The server allows you to use coroutines in your application, but since most web frameworks are not ready for use, you must use your own code. (it works with the framework, but you cannot use coroutines in your application ...)
source
share