METADATA 2.7 KB

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