before send to remote
This commit is contained in:
1
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/INSTALLER
vendored
Normal file
1
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/INSTALLER
vendored
Normal file
@@ -0,0 +1 @@
|
||||
pip
|
23
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/LICENSE
vendored
Normal file
23
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/LICENSE
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
2009-2018 (c) Benoît Chesneau <benoitc@e-engura.org>
|
||||
2009-2015 (c) Paul J. Davis <paul.joseph.davis@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the "Software"), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
120
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/METADATA
vendored
Normal file
120
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/METADATA
vendored
Normal file
@@ -0,0 +1,120 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: gunicorn
|
||||
Version: 20.1.0
|
||||
Summary: WSGI HTTP Server for UNIX
|
||||
Home-page: https://gunicorn.org
|
||||
Author: Benoit Chesneau
|
||||
Author-email: benoitc@e-engura.com
|
||||
License: MIT
|
||||
Project-URL: Documentation, https://docs.gunicorn.org
|
||||
Project-URL: Homepage, https://gunicorn.org
|
||||
Project-URL: Issue tracker, https://github.com/benoitc/gunicorn/issues
|
||||
Project-URL: Source code, https://github.com/benoitc/gunicorn
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Environment :: Other Environment
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Operating System :: MacOS :: MacOS X
|
||||
Classifier: Operating System :: POSIX
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3 :: Only
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Classifier: Topic :: Internet
|
||||
Classifier: Topic :: Utilities
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
Classifier: Topic :: Internet :: WWW/HTTP
|
||||
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
|
||||
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
|
||||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
||||
Requires-Python: >=3.5
|
||||
Requires-Dist: setuptools (>=3.0)
|
||||
Provides-Extra: eventlet
|
||||
Requires-Dist: eventlet (>=0.24.1) ; extra == 'eventlet'
|
||||
Provides-Extra: gevent
|
||||
Requires-Dist: gevent (>=1.4.0) ; extra == 'gevent'
|
||||
Provides-Extra: gthread
|
||||
Provides-Extra: setproctitle
|
||||
Requires-Dist: setproctitle ; extra == 'setproctitle'
|
||||
Provides-Extra: tornado
|
||||
Requires-Dist: tornado (>=0.2) ; extra == 'tornado'
|
||||
|
||||
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://travis-ci.org/benoitc/gunicorn.svg?branch=master
|
||||
:alt: Build Status
|
||||
:target: https://travis-ci.org/benoitc/gunicorn
|
||||
|
||||
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 Freenode_.
|
||||
|
||||
Documentation
|
||||
-------------
|
||||
|
||||
The documentation is hosted at https://docs.gunicorn.org.
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
Gunicorn requires **Python 3.x >= 3.5**.
|
||||
|
||||
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://webchat.freenode.net/?channels=gunicorn
|
||||
.. _Freenode: https://freenode.net/
|
||||
.. _LICENSE: https://github.com/benoitc/gunicorn/blob/master/LICENSE
|
||||
|
||||
|
76
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/RECORD
vendored
Normal file
76
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/RECORD
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
../../../bin/gunicorn,sha256=Jet6NyIdRZKdkNNAutiaOHYmwhcnklkcEVFkdesIieg,257
|
||||
gunicorn-20.1.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
gunicorn-20.1.0.dist-info/LICENSE,sha256=eJ_hG5Lhyr-890S1_MOSyb1cZ5hgOk6J-SW2M3mE0d8,1136
|
||||
gunicorn-20.1.0.dist-info/METADATA,sha256=-0kZuLv3CwPyNDUH40lI3VZN4CbFt3YCalVUprINtfs,3771
|
||||
gunicorn-20.1.0.dist-info/RECORD,,
|
||||
gunicorn-20.1.0.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
||||
gunicorn-20.1.0.dist-info/entry_points.txt,sha256=iKqKVTg4RzByDFxtGUiHcSAFATmYSYMO0f7S5RPLK6o,130
|
||||
gunicorn-20.1.0.dist-info/top_level.txt,sha256=cdMaa2yhxb8do-WioY9qRHUCfwf55YztjwQCncaInoE,9
|
||||
gunicorn/__init__.py,sha256=cMSZ4dqEfhR1eghYtGfJ9Fw4Xw9RN6U7BzH3tRpT4fQ,279
|
||||
gunicorn/__main__.py,sha256=kv-LQeOm8rXRw_NQTj8Tg3l3jv9eKMAm6jyKzYY0Hs8,171
|
||||
gunicorn/__pycache__/__init__.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/__main__.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/arbiter.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/config.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/debug.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/errors.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/glogging.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/pidfile.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/reloader.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/sock.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/systemd.cpython-38.pyc,,
|
||||
gunicorn/__pycache__/util.cpython-38.pyc,,
|
||||
gunicorn/app/__init__.py,sha256=GuqstqdkizeV4HRbd8aGMBn0Q8IDOyRU1wMMNqNe5GY,127
|
||||
gunicorn/app/__pycache__/__init__.cpython-38.pyc,,
|
||||
gunicorn/app/__pycache__/base.cpython-38.pyc,,
|
||||
gunicorn/app/__pycache__/pasterapp.cpython-38.pyc,,
|
||||
gunicorn/app/__pycache__/wsgiapp.cpython-38.pyc,,
|
||||
gunicorn/app/base.py,sha256=wIDHzndfzyTcKySUMJmW_mscgLVj_K9w7UCOsUNcVFo,7150
|
||||
gunicorn/app/pasterapp.py,sha256=Bb0JwQNqZxmZ-gvvZUGWAEc9RX2BdhdhfhJ2a12Xafo,2038
|
||||
gunicorn/app/wsgiapp.py,sha256=Ktb5z0GPkCpDqQ0zS8zccYCvqJi8Su4zOekwKJulwBA,1926
|
||||
gunicorn/arbiter.py,sha256=0U6C550IKETMLzTXe1scCcNfayXPKo0ZB0nJkvRWxVA,20521
|
||||
gunicorn/config.py,sha256=IxV1P9X41D2_1tTkuOR093SUKxXf5tbYVUYpfymaygU,61423
|
||||
gunicorn/debug.py,sha256=UUw-eteLEm_OQ98D6K3XtDjx4Dya2H35zdiu8z7F7uc,2289
|
||||
gunicorn/errors.py,sha256=JlDBjag90gMiRwLHG3xzEJzDOntSl1iM32R277-U6j0,919
|
||||
gunicorn/glogging.py,sha256=k_bt1mrTczN0El0rWq9FE1pwi5cTYFJeg9xHBj_d-ZE,14913
|
||||
gunicorn/http/__init__.py,sha256=b4TF3x5F0VYOPTOeNYwRGR1EYHBaPMhZRMoNeuD5-n0,277
|
||||
gunicorn/http/__pycache__/__init__.cpython-38.pyc,,
|
||||
gunicorn/http/__pycache__/body.cpython-38.pyc,,
|
||||
gunicorn/http/__pycache__/errors.cpython-38.pyc,,
|
||||
gunicorn/http/__pycache__/message.cpython-38.pyc,,
|
||||
gunicorn/http/__pycache__/parser.cpython-38.pyc,,
|
||||
gunicorn/http/__pycache__/unreader.cpython-38.pyc,,
|
||||
gunicorn/http/__pycache__/wsgi.cpython-38.pyc,,
|
||||
gunicorn/http/body.py,sha256=X1vbGcTSM3-2UI2ubtavuTS4yOd0fpTyfeFaQZ_x92o,7297
|
||||
gunicorn/http/errors.py,sha256=sNjF2lm4m2qyZ9l95_U33FRxPXpxXzjnZyYqWS-hxd4,2850
|
||||
gunicorn/http/message.py,sha256=hmSmf8DOHkRNstcYYkhuw0eg065pTDL8BeybtPftTVc,11759
|
||||
gunicorn/http/parser.py,sha256=6eNGDUMEURYqzCXsftv3a4hYuD_fBvttZxOJuRbdKNg,1364
|
||||
gunicorn/http/unreader.py,sha256=pXVde3fNCUIO2FLOSJ0iNtEEpA0m8GH6_R2Sl-cB-J8,1943
|
||||
gunicorn/http/wsgi.py,sha256=25Q6VZlBFpt-Wqmsxwt6FLw7-ckk1dU5XBkeY7i5mmc,12328
|
||||
gunicorn/instrument/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
gunicorn/instrument/__pycache__/__init__.cpython-38.pyc,,
|
||||
gunicorn/instrument/__pycache__/statsd.cpython-38.pyc,,
|
||||
gunicorn/instrument/statsd.py,sha256=-_DKM8T-3CHaq3pyxhdS6UoV70oD21tTXyJ4bVTrVFc,4633
|
||||
gunicorn/pidfile.py,sha256=U3TpoE5_05wQxonGS4pV-aLkq8BMSvql142XJnE2olw,2367
|
||||
gunicorn/reloader.py,sha256=jDxzT3Mn2NdcKD9Jiex6HNh-XSjAlK-iw7L4R36h-L0,3777
|
||||
gunicorn/sock.py,sha256=dIpBDeH2X-pzMB94VRmc-MbMrbE_ZFTAhuasOo7QebM,6110
|
||||
gunicorn/systemd.py,sha256=k2qJb6wAEv9Vk-k8zuTr9OyHJW6K2GkqWrSNoR3zTrs,2511
|
||||
gunicorn/util.py,sha256=supyIhToKSH4QONMMqTwChHwFHovRSInR92xxURSPQg,18516
|
||||
gunicorn/workers/__init__.py,sha256=Gv_JJXKofikyiPbRAUQ0IXIchKxgt0Gu-8y-nYRN9vY,594
|
||||
gunicorn/workers/__pycache__/__init__.cpython-38.pyc,,
|
||||
gunicorn/workers/__pycache__/base.cpython-38.pyc,,
|
||||
gunicorn/workers/__pycache__/base_async.cpython-38.pyc,,
|
||||
gunicorn/workers/__pycache__/geventlet.cpython-38.pyc,,
|
||||
gunicorn/workers/__pycache__/ggevent.cpython-38.pyc,,
|
||||
gunicorn/workers/__pycache__/gthread.cpython-38.pyc,,
|
||||
gunicorn/workers/__pycache__/gtornado.cpython-38.pyc,,
|
||||
gunicorn/workers/__pycache__/sync.cpython-38.pyc,,
|
||||
gunicorn/workers/__pycache__/workertmp.cpython-38.pyc,,
|
||||
gunicorn/workers/base.py,sha256=jNF8BnkHhaFNEmvfKrH0DI2-LiOs9UbKFGAPOXoFH30,9103
|
||||
gunicorn/workers/base_async.py,sha256=Eyb-zHt6bhaVfsCVygauVGVbw6WrX0KKvk5kIK-2yZ4,5693
|
||||
gunicorn/workers/geventlet.py,sha256=DDlj1MGimp-dpovHVOJB0eEvqD45_O0xcFG06v5vnEg,5713
|
||||
gunicorn/workers/ggevent.py,sha256=qgrz1Lsfcnjh8pthi6FW8BQrbT5KqLZhGxMjC1fNtEc,5733
|
||||
gunicorn/workers/gthread.py,sha256=bteTEQkeEKJMgJbtf3GcP2oCRV8HNGx4_lfzaWblTjE,12194
|
||||
gunicorn/workers/gtornado.py,sha256=0d_MoAXbLsy1LnbKc3C2joo0AwQLYnmpCJCQupl-n-Q,5988
|
||||
gunicorn/workers/sync.py,sha256=HvyNnCDlAFH3o2Ynm6W_F3IXnYQLBAT1oSn_uQ3LhCA,7327
|
||||
gunicorn/workers/workertmp.py,sha256=4sygTmNodn5vZ5qUnSSB0dUwtfetgAxrTrhhYxgEObY,1649
|
5
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/WHEEL
vendored
Normal file
5
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/WHEEL
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.36.2)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
7
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/entry_points.txt
vendored
Normal file
7
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/entry_points.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
[console_scripts]
|
||||
gunicorn=gunicorn.app.wsgiapp:run
|
||||
|
||||
[paste.server_runner]
|
||||
main=gunicorn.app.pasterapp:serve
|
||||
|
1
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/top_level.txt
vendored
Normal file
1
env/lib/python3.8/site-packages/gunicorn-20.1.0.dist-info/top_level.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
gunicorn
|
Reference in New Issue
Block a user