gunicorn
Package — ServerPython 3.7+Intermediate
Production WSGI server for Flask and Django
Quick Info
- Documentation
- Official Docs
- Python Version
- 3.7+
- Dependencies
- packaging, setuptools
- Install
pip install gunicorn
Learn by Difficulty
Quick Example
python
# Install: pip install gunicorn import gunicorn # Basic gunicorn usage print(f"Using gunicorn") # See documentation for detailed examples
gunicorn is a third-party package. Production WSGI server for Flask and Django. Install with: pip install gunicorn
Try in PlaygroundTags
packageserverwsgiproductionhttp
Related Items
uvicorn
Package — Server
Lightning-fast ASGI server on uvloop and httptools
flask
Package — Web Framework
Lightweight micro-framework for web apps and APIs with Jinja2 templates
django
Package — Web Framework
Full-stack web framework with ORM, admin panel, auth, templates, migrations
Nginx
Dev Tool — Deploy
Reverse proxy and load balancer commonly placed in front of Python WSGI/ASGI servers
waitress
Package — Server
Production pure-Python WSGI server (Windows + Unix)