Skip to main content

Extension for the Django signal receivers to process them asynchronously as the Celery tasks.

Project description

Celery Signal Receivers

Make Django signals asynchronous with Celery tasks. This package allows you to convert and write signal receivers to run in the background as Celery tasks.

Installation

The package is available on PyPI:

pip install celery-signal-receivers

Configuration

In order to use this package you need to set the path to the celery app object in Django settings:

EVENT_SIGNALS_CELERY_APP = 'myproject.celery.app'

Usage

The package is using Django Unified Signals for passing the message object from sender to receiver. The message object is always expected to be passed when sending the signal. That way receiver knows what type of message will be received. This package automates the process of checking if the send message is following the contract.

Let's start by defining the message structure. It can be any class you want.

import dataclasses

@dataclasses.dataclass
class ProfileMessage:
    id: int
    name: str

Now that we have the message structure defined, we can create the signal. We will use UnifiedSignal class for that:

from unified_signals import UnifiedSignal

profile_updated_signal = UnifiedSignal(ProfileMessage)

See the documentation of Django Unified Signals to learn more about sending the signal with standardized message.

Let's now write receiver for the signal. We will use the celery_signal_receivers.receiver decorator to convert the receiver to Celery task.

from celery_signals import receiver_task

@receiver_task(profile_updated_signal)
def handle_profile_updated(sender, message: ProfileMessage, **kwargs):
    print(message.id)
    print(message.name)
    ...

The above task will be executed by celery worker for the handle_profile_updated task. This function works as any other celery task, so you can route it to specific queue, set the priority, etc.

app.conf.task_routes = {
    'handle_profile_updated': {'queue': 'profile-updated-queue'},
}

Options

You can also pass the celery options to the task using the param in the decorator:

@receiver_task(profile_updated_signal, celery_task_options={'queue': 'profile-updated-queue'})
def foo(sender, message: ProfileMessage, **kwargs):
    ...

The decorator also accepts all other keyword arguments as regular django.dispatch.receiver decorator (ie. same as Signal.connect. For example you can set the dispatch_uid to avoid registering the same receiver multiple times.

@receiver_task(profile_updated_signal, dispatch_uid='profile_updated')
def foo(sender, message: ProfileMessage, **kwargs):
    ...

Limitations

For now this package does not support multiple signals passed to the @receiver_task decorator. You should create separate receivers for each signal. This may be added in the future.

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

celery_signal_receivers-0.3.0.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

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

celery_signal_receivers-0.3.0-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file celery_signal_receivers-0.3.0.tar.gz.

File metadata

  • Download URL: celery_signal_receivers-0.3.0.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for celery_signal_receivers-0.3.0.tar.gz
Algorithm Hash digest
SHA256 494395e26f48989c5a7863693fead1b064a6912841cf5f42abccfd789b452e4a
MD5 88dd91b30211b8c79a6f31bfe2654515
BLAKE2b-256 cef8a7aa81efb29625a08d28615ffe22a875df11e5770416ee850062b2ebc346

See more details on using hashes here.

Provenance

The following attestation bundles were made for celery_signal_receivers-0.3.0.tar.gz:

Publisher: publish-pypi.yaml on ivellios/celery-signal-receivers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file celery_signal_receivers-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for celery_signal_receivers-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 da9f26bc87ee7d98999f94002cb7c05ead0b094ecb4c5ab62c470ea209e5f6f3
MD5 25468383e91a5f996bde1f89c552a277
BLAKE2b-256 443d5346c8edad0676325a48a0e7e0f8715d670501b3479f002657058261ba91

See more details on using hashes here.

Provenance

The following attestation bundles were made for celery_signal_receivers-0.3.0-py3-none-any.whl:

Publisher: publish-pypi.yaml on ivellios/celery-signal-receivers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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