PKG-INFO 3.1 KB

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