Task runner for Django 3 without requiring other services
Project description
Django Simple Task
django-simple-task
runs background tasks in Django 3 without requiring other services and workers. It runs them in the same event loop as your ASGI application. It is not resilient as a proper task runner such as Celery, but works for some simple tasks and has less overall overheads.
Guide
Install the package:
pip install django-simple-task
Added it to installed apps:
# settings.py INSTALLED_APPS = [ ... 'django_simple_task' ]
Apply ASGI middleware :
# asgi.py from django_simple_task import django_simple_task_middlware application = django_simple_task_middlware(application)
Call a background task in Django view:
from django_simple_task import defer def task1(): time.sleep(1) print("task1 done") async def task2(): await asyncio.sleep(1) print("task2 done") def view(requests): defer(task1) defer(task2) return HttpResponse(b"My View")
It is required to run Django with ASGI server. Official Doc
Configurations
Concurrency level can be controlled by adding DJANGO_SIMPLE_TASK_WORKERS
to settings. Defaults to 1
.
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.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size django_simple_task-0.1.2-py3-none-any.whl (5.4 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size django-simple-task-0.1.2.tar.gz (4.5 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for django_simple_task-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe6494f5297711f5ec767835163dad3e4f6b751aa8857f0c338e5271a0721a4f |
|
MD5 | 3fde8f9e389cc3b5f5cc5f96534a73f8 |
|
BLAKE2-256 | 827893daa3c370c297ada1c5a8eec16b85022cb311a14c3138b4319135346361 |