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.

PKG-INFO 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. Metadata-Version: 1.1
  2. Name: django-celery
  3. Version: 3.2.2
  4. Summary: Old django celery integration project.
  5. Home-page: http://celeryproject.org
  6. Author: Ask Solem
  7. Author-email: ask@celeryproject.org
  8. License: BSD
  9. Description: ===============================================
  10. django-celery - Celery Integration for Django
  11. ===============================================
  12. .. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
  13. :Version: 3.2.0
  14. :Web: http://celeryproject.org/
  15. :Download: http://pypi.python.org/pypi/django-celery/
  16. :Source: http://github.com/celery/django-celery/
  17. :Keywords: celery, task queue, job queue, asynchronous, rabbitmq, amqp, redis,
  18. python, django, webhooks, queue, distributed
  19. --
  20. .. warning::
  21. **THIS PROJECT IS ONLY REQUIRED IF YOU WANT TO USE DJANGO RESULT BACKEND
  22. AND ADMIN INTEGRATION**
  23. Please follow the new tutorial at:
  24. http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
  25. django-celery provides Celery integration for Django; Using the Django ORM
  26. and cache backend for storing results, autodiscovery of task modules
  27. for applications listed in ``INSTALLED_APPS``, and more.
  28. Using django-celery
  29. ===================
  30. To enable ``django-celery`` for your project you need to add ``djcelery`` to
  31. ``INSTALLED_APPS``::
  32. INSTALLED_APPS += ("djcelery", )
  33. then add the following lines to your ``settings.py``::
  34. import djcelery
  35. djcelery.setup_loader()
  36. Everything works the same as described in the `Celery User Manual`_, except you
  37. need to invoke the programs through ``manage.py``:
  38. ===================================== =====================================
  39. **Program** **Replace with**
  40. ===================================== =====================================
  41. ``celery`` ``python manage.py celery``
  42. ``celery worker`` ``python manage.py celery worker``
  43. ``celery beat`` ``python manage.py celery beat``
  44. ``celery ...`` ``python manage.py celery ...``
  45. ===================================== =====================================
  46. The other main difference is that configuration values are stored in
  47. your Django projects' ``settings.py`` module rather than in
  48. ``celeryconfig.py``.
  49. If you're trying celery for the first time you should start by reading
  50. `Getting started with django-celery`_
  51. Special note for mod_wsgi users
  52. -------------------------------
  53. If you're using ``mod_wsgi`` to deploy your Django application you need to
  54. include the following in your ``.wsgi`` module::
  55. import djcelery
  56. djcelery.setup_loader()
  57. Documentation
  58. =============
  59. The `Celery User Manual`_ contains user guides, tutorials and an API
  60. reference. It also has a dedicated `subsection about the Django integration`_.
  61. .. _`Celery User Manual`: http://docs.celeryproject.org/
  62. .. _`subsection about the Django integration`:
  63. http://docs.celeryproject.org/en/latest/django/
  64. .. _`Getting started with django-celery`:
  65. http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
  66. Installation
  67. =============
  68. You can install ``django-celery`` either via the Python Package Index (PyPI)
  69. or from source.
  70. To install using ``pip``,::
  71. $ pip install django-celery
  72. To install using ``easy_install``,::
  73. $ easy_install django-celery
  74. You will then want to create the necessary tables. If you generating
  75. schema migrations, you'll want to run::
  76. $ python manage.py migrate djcelery
  77. Downloading and installing from source
  78. --------------------------------------
  79. Download the latest version of ``django-celery`` from
  80. http://pypi.python.org/pypi/django-celery/
  81. You can install it by doing the following,::
  82. $ tar xvfz django-celery-0.0.0.tar.gz
  83. $ cd django-celery-0.0.0
  84. # python setup.py install # as root
  85. Using the development version
  86. ------------------------------
  87. You can clone the git repository by doing the following::
  88. $ git clone git://github.com/celery/django-celery.git
  89. Getting Help
  90. ============
  91. Mailing list
  92. ------------
  93. For discussions about the usage, development, and future of celery,
  94. please join the `celery-users`_ mailing list.
  95. .. _`celery-users`: http://groups.google.com/group/celery-users/
  96. IRC
  97. ---
  98. Come chat with us on IRC. The **#celery** channel is located at the `Freenode`_
  99. network.
  100. .. _`Freenode`: http://freenode.net
  101. Bug tracker
  102. ===========
  103. If you have any suggestions, bug reports or annoyances please report them
  104. to our issue tracker at http://github.com/celery/django-celery/issues/
  105. Wiki
  106. ====
  107. http://wiki.github.com/celery/celery/
  108. Contributing
  109. ============
  110. Development of ``django-celery`` happens at Github:
  111. http://github.com/celery/django-celery
  112. You are highly encouraged to participate in the development.
  113. If you don't like Github (for some reason) you're welcome
  114. to send regular patches.
  115. License
  116. =======
  117. This software is licensed under the ``New BSD License``. See the ``LICENSE``
  118. file in the top distribution directory for the full license text.
  119. .. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround
  120. Platform: any
  121. Classifier: Development Status :: 5 - Production/Stable
  122. Classifier: Framework :: Django
  123. Classifier: Operating System :: OS Independent
  124. Classifier: Programming Language :: Python
  125. Classifier: Intended Audience :: Developers
  126. Classifier: License :: OSI Approved :: BSD License
  127. Classifier: Operating System :: POSIX
  128. Classifier: Topic :: Communications
  129. Classifier: Topic :: System :: Distributed Computing
  130. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  131. Classifier: Programming Language :: Python
  132. Classifier: Programming Language :: Python :: 2
  133. Classifier: Programming Language :: Python :: 2.7
  134. Classifier: Programming Language :: Python :: 3
  135. Classifier: Programming Language :: Python :: 3.3
  136. Classifier: Programming Language :: Python :: 3.4
  137. Classifier: Programming Language :: Python :: 3.5
  138. Classifier: Programming Language :: Python :: Implementation :: CPython
  139. Classifier: Programming Language :: Python :: Implementation :: PyPy
  140. Classifier: Programming Language :: Python :: Implementation :: Jython