Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

METADATA 2.6KB

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