├── .gitignore ├── AUTHORS.txt ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── admin_screenshot.png ├── circle.yml ├── django_celery_fulldbresult ├── __init__.py ├── admin.py ├── errors.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── find_stale_scheduled_tasks.py │ │ ├── find_stale_tasks.py │ │ └── fix_json_results.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150713_1520.py │ ├── 0003_taskresultmeta_eta.py │ ├── 0004_auto_20150914_1947.py │ ├── 0005_scheduling.py │ └── __init__.py ├── models.py ├── result_backends.py ├── serialization.py ├── tasks.py ├── tests.py └── views.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test_project ├── manage.py ├── test_app │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── tests.py │ └── views.py └── test_project │ ├── __init__.py │ ├── celeryapp.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/README.rst -------------------------------------------------------------------------------- /admin_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/admin_screenshot.png -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/circle.yml -------------------------------------------------------------------------------- /django_celery_fulldbresult/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/__init__.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/admin.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/errors.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_celery_fulldbresult/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_celery_fulldbresult/management/commands/find_stale_scheduled_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/management/commands/find_stale_scheduled_tasks.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/management/commands/find_stale_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/management/commands/find_stale_tasks.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/management/commands/fix_json_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/management/commands/fix_json_results.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/managers.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/migrations/0002_auto_20150713_1520.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/migrations/0002_auto_20150713_1520.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/migrations/0003_taskresultmeta_eta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/migrations/0003_taskresultmeta_eta.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/migrations/0004_auto_20150914_1947.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/migrations/0004_auto_20150914_1947.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/migrations/0005_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/migrations/0005_scheduling.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_celery_fulldbresult/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/models.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/result_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/result_backends.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/serialization.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/tasks.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/tests.py -------------------------------------------------------------------------------- /django_celery_fulldbresult/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/django_celery_fulldbresult/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_app/admin.py -------------------------------------------------------------------------------- /test_project/test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_app/models.py -------------------------------------------------------------------------------- /test_project/test_app/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_app/tasks.py -------------------------------------------------------------------------------- /test_project/test_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_app/tests.py -------------------------------------------------------------------------------- /test_project/test_app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /test_project/test_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_project/__init__.py -------------------------------------------------------------------------------- /test_project/test_project/celeryapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_project/celeryapp.py -------------------------------------------------------------------------------- /test_project/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_project/settings.py -------------------------------------------------------------------------------- /test_project/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_project/urls.py -------------------------------------------------------------------------------- /test_project/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/test_project/test_project/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powergo/django-celery-fulldbresult/HEAD/tox.ini --------------------------------------------------------------------------------