Skip to main content

An app that provides Django admin for ARQ

Project description

ARQ Django admin

codecov pypi versions

Django admin dashboard for arq. ARQ Django admin is a simple app that allows you to configure your queues in django's settings.py and easily use them in your project.

Installation

pip install arq-django-admin
  • Add arq_admin to INSTALLED_APPS in settings.py:
INSTALLED_APPS = (
    'arq_admin',
    # other apps
)

Make sure you added it before django.contrib.admin, otherwise you won't be able to see a link in the top right corner.

  • Configure your queues in Django's settings.py:
from arq.connections import RedisSettings
from arq.constants import default_queue_name


ARQ_QUEUES = {
    default_queue_name: RedisSettings(
        host='localhost',
        port=6379,
        database=0,
    ),
    'arq:another_queue_name': RedisSettings(),
}
  • Include arq_admin.urls in your urls.py:
from django.urls import include, path


urlpatterns = [
    # <...>
    path('arq/', include('arq_admin.urls')),
]
  • If you use custom job serializer, you need to add deserializer to settings.py:
ARQ_DESERIALIZER = custom_job_deserializer

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arq-django-admin-0.0.6.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

arq_django_admin-0.0.6-py3-none-any.whl (10.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page