This is an old revision of the document!
Mercurial
Install
apt install mercurial uwsgi-core uwsgi-plugins-all
UWSGI
Test
Application
def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return [b"Hello World"]
Server
uwsgi --plugins http,python3 --http :9090 --wsgi-file foobar.py