ppc64le/linux/: gunicorn-23.0.0 metadata and description

Simple index

WSGI HTTP Server for UNIX

author_email Benoit Chesneau <[email protected]>
classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Other Environment
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Operating System :: MacOS :: MacOS X
  • Operating System :: POSIX
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3 :: Only
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
  • Topic :: Internet
  • Topic :: Utilities
  • Topic :: Software Development :: Libraries :: Python Modules
  • Topic :: Internet :: WWW/HTTP
  • Topic :: Internet :: WWW/HTTP :: WSGI
  • Topic :: Internet :: WWW/HTTP :: WSGI :: Server
  • Topic :: Internet :: WWW/HTTP :: Dynamic Content
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/x-rst
dynamic license-file
license MIT
license_file LICENSE
project_urls
  • Homepage, https://gunicorn.org
  • Documentation, https://docs.gunicorn.org
  • Issue tracker, https://github.com/benoitc/gunicorn/issues
  • Source code, https://github.com/benoitc/gunicorn
  • Changelog, https://docs.gunicorn.org/en/stable/news.html
provides_extras testing
requires_dist
  • importlib_metadata; python_version < "3.8"
  • packaging
  • gevent>=1.4.0; extra == "gevent"
  • eventlet!=0.36.0,>=0.24.1; extra == "eventlet"
  • tornado>=0.2; extra == "tornado"
  • setproctitle; extra == "setproctitle"
  • gevent; extra == "testing"
  • eventlet; extra == "testing"
  • coverage; extra == "testing"
  • pytest; extra == "testing"
  • pytest-cov; extra == "testing"
requires_python >=3.7
File Tox results History
gunicorn-23.0.0-py3-none-any.whl
Size
86 KB
Type
Python Wheel
Python
3

Gunicorn

PyPI version Supported Python versions Build Status Lint Status

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 for more details.

License

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