https://github.com/vintasoftware/celery-persistent-revokes
Celery task revokes are stored on memory or on file. This packages makes possible to easely customize how your revokes are stored (Ex.: Database).
https://github.com/vintasoftware/celery-persistent-revokes
Last synced: 5 months ago
JSON representation
Celery task revokes are stored on memory or on file. This packages makes possible to easely customize how your revokes are stored (Ex.: Database).
- Host: GitHub
- URL: https://github.com/vintasoftware/celery-persistent-revokes
- Owner: vintasoftware
- License: mit
- Created: 2018-04-25T22:44:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-07-15T18:41:31.000Z (almost 4 years ago)
- Last Synced: 2025-09-17T22:14:20.458Z (10 months ago)
- Language: Python
- Size: 62.5 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
=============================
Celery Persistent Revokes
=============================
.. image:: https://badge.fury.io/py/celery-persistent-revokes.svg
:target: https://badge.fury.io/py/celery-persistent-revokes
.. image:: https://travis-ci.org/vintasoftware/celery-persistent-revokes.svg?branch=master
:target: https://travis-ci.org/vintasoftware/celery-persistent-revokes
.. image:: https://codecov.io/gh/vintasoftware/celery-persistent-revokes/branch/master/graph/badge.svg
:target: https://codecov.io/gh/vintasoftware/celery-persistent-revokes
Celery task revokes are stored on memory or on file. This packages makes possible to easily customize how your revokes are stored (Ex.: Database).
Documentation
-------------
The full documentation is at https://celery-persistent-revokes.readthedocs.io.
Quickstart
----------
Install Celery Persistent Revokes::
pip install celery-persistent-revokes
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'celery_persistent_revokes.apps.CeleryPersistentRevokesConfig',
...
)
Add Celery Persistent Revokes's URL patterns:
.. code-block:: python
from celery_persistent_revokes import urls as celery_persistent_revokes_urls
urlpatterns = [
...
url(r'^', include(celery_persistent_revokes_urls)),
...
]
Features
--------
* Built-in tasks revokes using Django default database
* Support for custom backends
Running Tests
-------------
Does the code actually work?
::
source /bin/activate
(myenv) $ pip install tox
(myenv) $ tox
Credits
-------
Tools used in rendering this package:
* Cookiecutter_
* `cookiecutter-djangopackage`_
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage