Skip to main content

Django application that allows the management of scheduled, long, asynchronous tasks.

Project description

Django application to manage common django management tasks asynchronously, via the Django admin interface, using Redis Queue.

NOTE: Right now, django-eztaskmanager is built to play nice with RQ (Redis Queue). It does the job, and does it well. But I know some of you out there swear by Celery, and I hear you. It's on my radar and I'm knee-deep in code working to get it integrated. So, keep an eye out for updates!

eztaskmanager is a port and an evolution of our previous django-uwsgi-taskmanager, so thanks to the authors there.

Main features:

  • use standard django management commands as tasks templates,
  • import available management commands through a meta-management command, as possible templates for tasks,
  • start and stop tasks manually via admin,
  • schedule point and periodic tasks via django admin,
  • use RQ (rq + rq-scheduler) or Celery (celery + celery-beat) for queue management,
  • check or download the generated reports/logs,
  • live logs streaming view, with filters on errors and warnings for tasks debugging,
  • get notifications via Slack or email when a task succeeds or fails.

See full documentation at http://django-eztaskmanager.rtfd.io/

Installation

  1. Install the app with pip:

    • via PyPI:

      pip install django-eztaskmanager

    • or via GitHub:

      pip install git+https://github.com/openpolis/django-eztaskmanager.git

  2. Add "eztaskmanager" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        "django.contrib.admin",
        # ...
        "eztaskmanager",
    ]
    
  3. Run python manage.py migrate to create the taskmanager tables.

  4. Run python manage.py collectcommands --excludecore to import taskmanager commands.

  5. Include the taskmanager URLConf (for the log viewers) in your project urls.py like this (optional):

    from django.contrib import admin
    from django.urls import include, path
    
    urlpatterns = [
        path("admin/", admin.site.urls),
        path('eztaskmanager/', include('eztaskmanager.urls'))
    ]
    
  6. Set parameters in your settings file as below (optional):

    # eztaskmanager
    # EZTASKMANAGER_QUEUE_SERVICE_TYPE = 'RQ'
    # EZTASKMANAGER_N_LINES_IN_REPORT_LOG = 10
    # EZTASKMANAGER_N_REPORTS_INLINE = 10
    # EZTASKMANAGER_SHOW_LOGVIEWER_LINK = True
    # EZTASKMANAGER_USE_FILTER_COLLAPSE = True
    # EZTASKMANAGER_NOTIFICATION_HANDLERS = {}
    # EZTASKMANAGER_BASE_URL = None
    EZTASKMANAGER_NOTIFICATION_HANDLERS = {
        "email-errors": {
            "class": "eztaskmanager.services.notifications.EmailNotificationHandler",
            "level": "failure",
            "from_email": "admin@example.com",
            "recipients": ["admin@example.com", ],
        },
    }
    EZTASKMANAGER_N_LINES_IN_REPORT_LOG = 5
    

Usage

You just need to install django-eztaskmanager in your Django Project and run collectcommands as described. Django ezaskmanager will collect all the commands and make them available for asynchronous scheduling in the admin.

If you need a new asynchronous task, just write a standard custom Django command using eztaskmanager.services.logger.LogEnabledCommand in places of django.core.management.base.BaseCommand, and synchronize the app. Then go to the admin page and schedule it.

You can disable commands from the admin, and let users (with limited permissions) schedule only the available ones.

NOTE: RQ or Celery workers and schedulers (rq-scheduler or celery-beat) need to be up and running

Enabling notifications

To enable Slack notifications support for failing tasks, you have to first install the required packages, which are not included by default. To do that, just:

pip install django-eztaskmanager[notifications]

This will install the django-eztaskmanager package from PyPI, including the optional dependencies required to make Slack notifications work.

Email notifications are instead handled using Django django.core.mail module, so no further dependencies are needed and they should work out of the box, given you have at least one email backend properly configured.

Then, you have to configure the following settings:

  • EZTASKMANAGER_NOTIFICATIONS_SLACK_TOKEN, which must be set with you own Slack token as string.
  • EZTASKMANAGER_NOTIFICATIONS_SLACK_CHANNELS, a list of strings representing the names or ids of the channels which will receive the notifications.
  • EZTASKMANAGER_NOTIFICATIONS_EMAIL_FROM, the "from address" you want your outgoing notification emails to use.
  • EZTASKMANAGER_NOTIFICATIONS_EMAIL_RECIPIENTS, a list of strings representing the recipients of the notifications.

The demo tutorial (RQ)

Following this tutorial, it will be possible to install, configure and use eztaskmanager for a simple demo django project running in developer mode, with the RQ engine.

Clone the project from github onto your hard disk:

    git clone https://github.com/openpolis/django-eztaskmanager
    cd django-eztaskmanager

There is a basic Django project under the demoproject directory, set to use eztaskmanager.

    demoproject/
    ├── demoproject/
    │   ├── __init__.py
    │   └── asgi.py
    │   ├── settings.py
    │   ├── test_settings.py
    │   ├── urls.py
    │   └── wsgi.py
    ├── manage.py
    ├── static/
    └── docker-compose-local.yml

Try the demo project

As a pre-requisite, a Redis server should be up and running on the default port 6379. Follow the instructions_, or if you use docker_, just run docker compose -f docker-compose-local.yml.

Enter the demoproject directory, then create and activate the virtual environments:

    $ cd demoproject
    $ mkdir -p venv
    $ python3 -m venv venv
    $ source venv/bin/activate

Install eztaskmanager, this will install all needed dependencies (django, redis, django-rq, rq-scheduler,...):

    (venv) $ pip install django-eztaskmanager

Then execute this commands to setup the server in development mode, the rq worker and the scheduler:

    (venv) $ python manage.py migrate  # create tables in the DB (default sqlite will do)
    (venv) $ python manage.py createsuperuser # take note of username and password for login
    (venv) $ python manage.py collectcommands --excludecore  # collect basic commands from the eztaskmanager package
    (venv) $ python manage.py runserver  # django app server on port 8000
    (venv) $ python manage.py rqworker  # rq worker to execute enqueued tasks
    (venv) $ python manage.py rqscheduler --verbosity=3  # rq scheduler to enqueue periodic tasks

Visit http://127.0.0.1:8000/admin/

Development and Testing

Running Tests

The project uses Django's test framework. Tests are located in eztaskmanager/tests/.

To run the test suite:

# Install development dependencies with Poetry
poetry install

# Run all tests
export PYTHONPATH="${PYTHONPATH}:$(pwd)"
poetry run python demoproject/manage.py test --verbosity=2

# Run specific test module
poetry run python demoproject/manage.py test eztaskmanager.tests.test_services

# Run tests with coverage
poetry run coverage run demoproject/manage.py test
poetry run coverage report

Code Quality

# Format code with black
poetry run black eztaskmanager/

# Run flake8 linting
poetry run flake8 eztaskmanager/

# Type checking with mypy
poetry run mypy eztaskmanager/

Copyright

Django eztaskmanager is an application to manage common django management tasks asynchronously, via the Django admin interface, using Redis Queue.

Copyright (c) 2024 Guglielmo Celata (django-eztaskmanager)
Copyright (C) 2019-2020 Gabriele Giaccari, Gabriele Lucci, Guglielmo Celata, Paolo Melchiorre (django-uwsgi-taskmanager)

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

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

django_eztaskmanager-0.5.1.tar.gz (164.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_eztaskmanager-0.5.1-py3-none-any.whl (176.6 kB view details)

Uploaded Python 3

File details

Details for the file django_eztaskmanager-0.5.1.tar.gz.

File metadata

  • Download URL: django_eztaskmanager-0.5.1.tar.gz
  • Upload date:
  • Size: 164.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.13.7 Linux/6.11.0-1018-azure

File hashes

Hashes for django_eztaskmanager-0.5.1.tar.gz
Algorithm Hash digest
SHA256 8e447fe4cbadc1d8709cff3d1096f1a8dae8ed1ea09ea843de3c60ea67829e83
MD5 954058deb93a6e08d3136fa28b30f9b1
BLAKE2b-256 1e77470f0f70adcf43a04e6717294475ccdd24a414a5ef2b338f325a7435b7e6

See more details on using hashes here.

File details

Details for the file django_eztaskmanager-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: django_eztaskmanager-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 176.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.13.7 Linux/6.11.0-1018-azure

File hashes

Hashes for django_eztaskmanager-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1b3f1631b4e6a41d8a61117e2751e957952592c2270d70cce39648a8f21547e0
MD5 0af824093d41e1a7f5566a71096d1ee7
BLAKE2b-256 52a9f69e4bf8a82731cf4e20a567d49a04062039b4dd503b38f58a17c0af6f30

See more details on using hashes here.

Supported by

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