Task scheduling for Django 6.0 task backends
Project description
Django-scheduled-tasks: task scheduling for the Django tasks framework
A Django app that allows scheduling for the Django 6.0 task framework.
Installation & Usage
First, make sure your task backend is setup. I'd recommend starting with the database backend in django-tasks.
Then, add the scheduled tasks:
pip install django-scheduled-tasks
Add the django_scheduled_tasks module to your INSTALLED_APPS:
INSTALLED_APPS = [
...,
"django_scheduled_tasks",
]
define some tasks to run periodically, by wrapping around an existing task, either as a decorator or by calling
periodic_task directly:
from django.tasks import task
from django_scheduled_tasks import periodic_task
from datetime import timedelta
# note the order of the decorators! Make sure periodic_task is above task
@periodic_task(interval=timedelta(hours=2))
@task
def run_hourly():
...
# or call periodic task with a task directly:
@task
def some_existing_task(some_arg: str):
...
periodic_task(interval=timedelta(hours=3), call_args=("some_arg_value",), task=some_existing_task)
For cron-style scheduling, use cron_task with a cron expression:
from django_scheduled_tasks import cron_task
from django.tasks import task
# Run at 9am every day
@cron_task(cron_schedule="0 9 * * *")
@task
def daily_report():
...
# Run at 9am in a specific timezone
@cron_task(cron_schedule="0 9 * * *", timezone_str="Europe/Brussels")
@task
def timezoned_scheduled_task():
...
Lastly, run one instance of the scheduler as a part of your application:
python manage.py run_task_scheduler
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_scheduled_tasks-0.2.17.tar.gz.
File metadata
- Download URL: django_scheduled_tasks-0.2.17.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9044ebc16167d200ecafd959285b60d281b8bce501e0ac715bd112f58563aff2
|
|
| MD5 |
405579c2c3d41f552d34cea2f238ce58
|
|
| BLAKE2b-256 |
ca551040c9d89314bf02f1aec407539f878e4b0f340e6ab21da72b9e1ccb24bf
|
File details
Details for the file django_scheduled_tasks-0.2.17-py3-none-any.whl.
File metadata
- Download URL: django_scheduled_tasks-0.2.17-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98a11807f63026514995dd511b1c19b07d0ab17e3c65c0d9fcdf3bcb2398f21b
|
|
| MD5 |
088fc32f025c54c7a163e9163551bf45
|
|
| BLAKE2b-256 |
101d61f55293516a25584ea80189e1defad06783b9dbb028f08120620830da3b
|