gunicorn Plugin
Gunicorn ('Green Unicorn') is a Python WSGI HTTP Server for UNIX. It's a pre-fork worker model server for running Python web applications in production.
Common Commands
gunicorn myapp:app— serve a WSGI app on default 127.0.0.1:8000gunicorn myapp:app -w 4 -b 0.0.0.0:8000— serve with 4 workersgunicorn myapp:app --reload— development with auto-reloadgunicorn --version— show versiongunicorn -c config.py myapp:app— use config file