├── .gitignore ├── CHANGES ├── LICENSE ├── README.rst ├── dpq ├── __init__.py ├── admin.py ├── apps.py ├── commands.py ├── decorators.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190419_2057.py │ ├── 0003_alter_job_args.py │ └── __init__.py ├── models.py ├── queue.py └── tests.py ├── dpq_scheduler ├── __init__.py ├── apps.py ├── commands.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── schedules.py └── tests.py ├── manage.py ├── setup.py └── testproj ├── __init__.py ├── management ├── __init__.py └── commands │ ├── __init__.py │ ├── test_scheduler.py │ └── test_worker.py ├── queue.py ├── requirements.txt ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | dist/ 3 | *.egg-info/ 4 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/README.rst -------------------------------------------------------------------------------- /dpq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dpq/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/admin.py -------------------------------------------------------------------------------- /dpq/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/apps.py -------------------------------------------------------------------------------- /dpq/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/commands.py -------------------------------------------------------------------------------- /dpq/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/decorators.py -------------------------------------------------------------------------------- /dpq/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/migrations/0001_initial.py -------------------------------------------------------------------------------- /dpq/migrations/0002_auto_20190419_2057.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/migrations/0002_auto_20190419_2057.py -------------------------------------------------------------------------------- /dpq/migrations/0003_alter_job_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/migrations/0003_alter_job_args.py -------------------------------------------------------------------------------- /dpq/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dpq/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/models.py -------------------------------------------------------------------------------- /dpq/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/queue.py -------------------------------------------------------------------------------- /dpq/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq/tests.py -------------------------------------------------------------------------------- /dpq_scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dpq_scheduler/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq_scheduler/apps.py -------------------------------------------------------------------------------- /dpq_scheduler/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq_scheduler/commands.py -------------------------------------------------------------------------------- /dpq_scheduler/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq_scheduler/migrations/0001_initial.py -------------------------------------------------------------------------------- /dpq_scheduler/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dpq_scheduler/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq_scheduler/models.py -------------------------------------------------------------------------------- /dpq_scheduler/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq_scheduler/schedules.py -------------------------------------------------------------------------------- /dpq_scheduler/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/dpq_scheduler/tests.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/manage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/setup.py -------------------------------------------------------------------------------- /testproj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproj/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproj/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproj/management/commands/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/testproj/management/commands/test_scheduler.py -------------------------------------------------------------------------------- /testproj/management/commands/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/testproj/management/commands/test_worker.py -------------------------------------------------------------------------------- /testproj/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/testproj/queue.py -------------------------------------------------------------------------------- /testproj/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/testproj/requirements.txt -------------------------------------------------------------------------------- /testproj/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/testproj/settings.py -------------------------------------------------------------------------------- /testproj/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/testproj/urls.py -------------------------------------------------------------------------------- /testproj/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gavinwahl/django-postgres-queue/HEAD/testproj/wsgi.py --------------------------------------------------------------------------------