PKG-INFO 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. Metadata-Version: 2.1
  2. Name: gunicorn
  3. Version: 19.9.0
  4. Summary: WSGI HTTP Server for UNIX
  5. Home-page: http://gunicorn.org
  6. Author: Benoit Chesneau
  7. Author-email: benoitc@e-engura.com
  8. License: MIT
  9. Description: Gunicorn
  10. --------
  11. .. image:: https://img.shields.io/pypi/v/gunicorn.svg?style=flat
  12. :alt: PyPI version
  13. :target: https://pypi.python.org/pypi/gunicorn
  14. .. image:: https://img.shields.io/pypi/pyversions/gunicorn.svg
  15. :alt: Supported Python versions
  16. :target: https://pypi.python.org/pypi/gunicorn
  17. .. image:: https://travis-ci.org/benoitc/gunicorn.svg?branch=master
  18. :alt: Build Status
  19. :target: https://travis-ci.org/benoitc/gunicorn
  20. Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a pre-fork
  21. worker model ported from Ruby's Unicorn_ project. The Gunicorn server is broadly
  22. compatible with various web frameworks, simply implemented, light on server
  23. resource usage, and fairly speedy.
  24. Feel free to join us in `#gunicorn`_ on Freenode_.
  25. Documentation
  26. -------------
  27. The documentation is hosted at http://docs.gunicorn.org.
  28. Installation
  29. ------------
  30. Gunicorn requires **Python 2.x >= 2.6** or **Python 3.x >= 3.2**.
  31. Install from PyPI::
  32. $ pip install gunicorn
  33. Usage
  34. -----
  35. Basic usage::
  36. $ gunicorn [OPTIONS] APP_MODULE
  37. Where ``APP_MODULE`` is of the pattern ``$(MODULE_NAME):$(VARIABLE_NAME)``. The
  38. module name can be a full dotted path. The variable name refers to a WSGI
  39. callable that should be found in the specified module.
  40. Example with test app::
  41. $ cd examples
  42. $ gunicorn --workers=2 test:app
  43. License
  44. -------
  45. Gunicorn is released under the MIT License. See the LICENSE_ file for more
  46. details.
  47. .. _Unicorn: https://bogomips.org/unicorn/
  48. .. _`#gunicorn`: https://webchat.freenode.net/?channels=gunicorn
  49. .. _Freenode: https://freenode.net/
  50. .. _LICENSE: https://github.com/benoitc/gunicorn/blob/master/LICENSE
  51. Platform: UNKNOWN
  52. Classifier: Development Status :: 4 - Beta
  53. Classifier: Environment :: Other Environment
  54. Classifier: Intended Audience :: Developers
  55. Classifier: License :: OSI Approved :: MIT License
  56. Classifier: Operating System :: MacOS :: MacOS X
  57. Classifier: Operating System :: POSIX
  58. Classifier: Programming Language :: Python
  59. Classifier: Programming Language :: Python :: 2
  60. Classifier: Programming Language :: Python :: 2.6
  61. Classifier: Programming Language :: Python :: 2.7
  62. Classifier: Programming Language :: Python :: 3
  63. Classifier: Programming Language :: Python :: 3.2
  64. Classifier: Programming Language :: Python :: 3.3
  65. Classifier: Programming Language :: Python :: 3.4
  66. Classifier: Programming Language :: Python :: 3.5
  67. Classifier: Programming Language :: Python :: 3.6
  68. Classifier: Topic :: Internet
  69. Classifier: Topic :: Utilities
  70. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  71. Classifier: Topic :: Internet :: WWW/HTTP
  72. Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
  73. Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
  74. Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
  75. Requires-Python: >=2.6, !=3.0.*, !=3.1.*
  76. Provides-Extra: tornado
  77. Provides-Extra: gevent
  78. Provides-Extra: eventlet
  79. Provides-Extra: gthread