gunicorn

gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.

Latest version: 23.0.0 registry icon
Maintenance score
100
Safety score
90
Popularity score
100
Check your open source dependency risks. Get immediate insight about security, stability and licensing risks.
Security
  Vulnerabilities
Version Suggest Low Medium High Critical
23.0.0 0 0 0 0 0
22.0.0 0 0 0 0 0
21.2.0 0 0 1 0 0
21.1.0 0 0 1 0 0
21.0.1 0 0 1 0 0
21.0.0 0 0 1 0 0
20.1.0 0 0 1 0 0
20.0.4 0 0 1 0 0
20.0.3 0 0 1 0 0
20.0.2 0 0 1 0 0
20.0.1 0 0 1 0 0
20.0.0 0 0 1 0 0
19.10.0 0 0 1 0 0
19.9.0 0 0 1 0 0
19.8.1 0 0 1 0 0
19.8.0 0 0 1 0 0
19.7.1 0 0 1 0 0
19.7.0 0 0 1 0 0
19.6.0 0 0 1 0 0
19.5.0 0 0 1 0 0
19.4.5 0 0 1 1 0
19.4.4 0 0 1 1 0
19.4.3 0 0 1 1 0
19.4.2 0 0 1 1 0
19.4.1 0 0 1 1 0
19.4.0 0 0 1 1 0
19.3.0 0 0 1 1 0
19.2.1 0 0 1 1 0
19.2.0 0 0 1 1 0
19.1.1 0 0 1 1 0
19.1.0 0 0 1 1 0
19.0.0 0 0 1 1 0
18.0 0 0 1 1 0
17.5 0 0 1 1 0
0.17.4 0 0 1 1 0
0.17.3 0 0 1 1 0
0.17.2 0 0 1 1 0
0.17.1 0 0 1 1 0
0.17.0 0 0 1 1 0
0.16.1 0 0 1 1 0
0.16.0 0 0 1 1 0
0.15.0 0 0 1 1 0
0.14.6 0 0 1 1 0
0.14.5 0 0 1 1 0
0.14.4 0 0 1 1 0
0.14.3 0 0 1 1 0
0.14.2 0 0 1 1 0
0.14.1 0 0 1 1 0
0.14.0 0 0 1 1 0
0.13.4 0 0 1 1 0
0.13.3 0 0 1 1 0
0.13.2 0 0 1 1 0
0.13.1 0 0 1 1 0
0.13.0 0 0 1 1 0
0.12.2 0 0 1 1 0
0.12.1 0 0 1 1 0
0.12.0 0 0 1 1 0
0.11.2 0 0 1 1 0
0.11.1 0 0 1 1 0
0.11.0 0 0 1 1 0
0.10.1 0 0 1 1 0
0.10.0 0 0 1 1 0
0.9.1 0 0 1 1 0
0.9.0 0 0 1 1 0
0.8.1 0 0 1 1 0
0.8.0 0 0 1 1 0
0.7.2 0 0 1 1 0
0.7.1 0 0 1 1 0
0.7.0 0 0 1 1 0
0.6.6 0 0 1 1 0
0.6.5 0 0 1 1 0
0.6.4 0 0 1 1 0
0.6.3 0 0 1 1 0
0.6.2 0 0 1 1 0
0.6.1 0 0 1 1 0
0.6 0 0 1 1 0
0.5.1 0 0 1 1 0
0.5 0 0 1 1 0
0.4.2 0 0 1 1 0
0.4.1 0 0 1 1 0
0.4 0 0 1 1 0
0.3.2 0 0 1 1 0
0.3.1 0 0 1 1 0
0.3 0 0 1 1 0
0.2.1 0 0 1 1 0
0.2 0 0 1 1 0
0.1 0 0 1 1 0

Stability
Latest release:

23.0.0 - This version is safe to use because it has no known security vulnerabilities at this time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform

Licensing

Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.

MIT   -   MIT License

Not a wildcard

Not proprietary

OSI Compliant



Gunicorn

.. image:: https://img.shields.io/pypi/v/gunicorn.svg?style=flat :alt: PyPI version :target: https://pypi.python.org/pypi/gunicorn

.. image:: https://img.shields.io/pypi/pyversions/gunicorn.svg :alt: Supported Python versions :target: https://pypi.python.org/pypi/gunicorn

.. image:: https://github.com/benoitc/gunicorn/actions/workflows/tox.yml/badge.svg :alt: Build Status :target: https://github.com/benoitc/gunicorn/actions/workflows/tox.yml

.. image:: https://github.com/benoitc/gunicorn/actions/workflows/lint.yml/badge.svg :alt: Lint Status :target: https://github.com/benoitc/gunicorn/actions/workflows/lint.yml

Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork worker model ported from Ruby's Unicorn_ project. The Gunicorn server is broadly compatible with various web frameworks, simply implemented, light on server resource usage, and fairly speedy.

Feel free to join us in #gunicorn_ on Libera.chat_.

Documentation

The documentation is hosted at https://docs.gunicorn.org.

Installation

Gunicorn requires Python 3.x >= 3.7.

Install from PyPI::

$ pip install gunicorn

Usage

Basic usage::

$ gunicorn [OPTIONS] APP_MODULE

Where APP_MODULE is of the pattern $(MODULE_NAME):$(VARIABLE_NAME). The module name can be a full dotted path. The variable name refers to a WSGI callable that should be found in the specified module.

Example with test app::

$ cd examples
$ gunicorn --workers=2 test:app

Contributing

See our complete contributor's guide <CONTRIBUTING.md>_ for more details.

License

Gunicorn is released under the MIT License. See the LICENSE_ file for more details.

.. _Unicorn: https://bogomips.org/unicorn/ .. _#gunicorn: https://web.libera.chat/?channels=#gunicorn .. _Libera.chat: https://libera.chat/ .. _LICENSE: https://github.com/benoitc/gunicorn/blob/master/LICENSE