1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
Source: gunicorn
Section: httpd
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Chris Lamb <lamby@debian.org>,
Build-Depends:
debhelper-compat (= 13),
dh-python,
pybuild-plugin-pyproject,
python3-all,
python3-packaging,
python3-setuptools,
Standards-Version: 4.6.1
Vcs-Git: https://salsa.debian.org/python-team/packages/gunicorn.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/gunicorn
Homepage: https://gunicorn.org/
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-pybuild
Package: gunicorn
Architecture: all
Depends:
python3-gunicorn (= ${binary:Version}),
${misc:Depends},
${python3:Depends},
Provides:
gunicorn3,
httpd-wsgi3,
Conflicts:
gunicorn3,
Replaces:
gunicorn3,
Suggests:
python3-pastedeploy,
python3-setproctitle,
python3-tornado,
Description: Event-based HTTP/WSGI server
Green Unicorn (gunicorn) is an HTTP/WSGI server designed to serve fast clients
or sleepy applications. That is to say; behind a buffering front-end server
such as nginx or lighttpd.
.
* Optional support for Eventlet, Tornado and Gevent to provide asynchronous
long-polling ("Comet") connections.
* Process management: Gunicorn reaps and restarts workers that die.
* Easy integration with Django and Paster compatible applications (Pylons,
TurboGears 2, etc.
* Load balancing via pre-fork and a shared socket
* Graceful worker process restarts
* Upgrading without losing connections
* Decode chunked transfers on-the-fly, allowing upload progress notifications
or stream-based protocols over HTTP
Package: gunicorn-examples
Architecture: all
Depends:
${misc:Depends},
Recommends:
libjs-jquery,
libjs-jquery-flot,
Multi-Arch: foreign
Description: Event-based HTTP/WSGI server (examples)
Green Unicorn (gunicorn) is an HTTP/WSGI server designed to serve fast clients
or sleepy applications. That is to say; behind a buffering front-end server
such as nginx or lighttpd.
.
* Optional support for Eventlet, Tornado and Gevent to provide asynchronous
long-polling ("Comet") connections.
* Process management: Gunicorn reaps and restarts workers that die.
* Easy integration with Django and Paster compatible applications (Pylons,
TurboGears 2, etc.
* Load balancing via pre-fork and a shared socket
* Graceful worker process restarts
* Upgrading without losing connections
* Decode chunked transfers on-the-fly, allowing upload progress notifications
or stream-based protocols over HTTP
.
These are the examples.
Package: python3-gunicorn
Section: python
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Description: Event-based HTTP/WSGI server (Python 3 libraries)
Green Unicorn (gunicorn) is an HTTP/WSGI server designed to serve fast clients
or sleepy applications. That is to say; behind a buffering front-end server
such as nginx or lighttpd.
.
* Optional support for Eventlet, Tornado and Gevent to provide asynchronous
long-polling ("Comet") connections.
* Process management: Gunicorn reaps and restarts workers that die.
* Easy integration with Django and Paster compatible applications (Pylons,
TurboGears 2, etc.
* Load balancing via pre-fork and a shared socket
* Graceful worker process restarts
* Upgrading without losing connections
* Decode chunked transfers on-the-fly, allowing upload progress notifications
or stream-based protocols over HTTP
.
This is the Python 3 library.
|