uwsgi

Application server for deploying Python and other web applications

brewmacoslinux
Try with needOr install directly
Source

About

Full stack for building hosting services

Commands

uwsgi

Examples

Start a basic uWSGI server for a Python WSGI application$ uwsgi --http :8000 --wsgi-file myapp.py --callable app
Run uWSGI with a configuration file$ uwsgi --ini uwsgi.ini
Start uWSGI with multiple worker processes for better concurrency$ uwsgi --http :8000 --wsgi-file myapp.py --callable app --processes 4 --threads 2