Django Query Signals
Project description
Django Query Signals
What is it?
A library that will send signals on queryset data manipulation methods.
What problem does it solve?
Django sends many signals, including when a model instance is created, deleted and updated. However when using bulk methods like bulk_create or delete. There is no signal send, with this library signals are send on the following methods:
bulk_create
delete
get_or_create
update_or_create
update
A signal will be send before and after the method is executed.
How do I install it?
pip install django-query-signals
Adding to Django (using integrator)
>>> import django_integrator
>>> django_integrator.add_application('django_query_signals')
If you don’t want to use the above, you can just add ‘django_query_signals’ to your installed apps.
How do I use it?
From the namespace django_query_signals you can import the below signals which you can connect to via the usual way.
pre_bulk_create
post_bulk_create,
pre_delete
post_delete
pre_get_or_create
post_get_or_create
pre_update_or_create
post_update_or_create
pre_update
post_update
For example:
>>> @receiver(post_bulk_create)
>>> def callback(signal, sender, args):
>>> pass
The argument ‘signal’ is the signal that is connected, ‘sender’ is the underlying model class and ‘args’ is a dictionary which the method in queryset is called with, this is supplemented with ‘self’ which contains the queryset instance and if the connecting signal is a ‘post’ type the key ‘return’ is also added which contains the value the method has returned.
If you connect to the ‘pre’ type signal, changing the ‘args’ and ‘self’ will also change the actual execution of the method.
Caveat
This library relies on monkey patching django.db.models.query.QuerySet, thus if your instance also monkey patches the same thing or you use a custom QuerySet in your Manager, then there is a good chance that this library will not work at all for you, however most likely you can work around this issue by examining the signals.py file in this library.
What license is this?
Two-clause BSD
How can I get support?
Please use the repo’s bug tracker to leave behind any questions, feedback, suggestions and comments. I will handle them depending on my time and what looks interesting. If you require guaranteed support please contact me via e-mail so we can discuss appropriate compensation.
Signing Off
Is my work helpful or valuable to you? You can repay me by donating via:
https://paypal.me/MartinHellwig
-or-
https://www.patreon.com/hellwig
Thank you!
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
Hashes for django-query-signals-0.0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46d0d6fdb2af0cc4ad9080eda3510f79b7165a1f47f0d1e77723f12a681712e7 |
|
MD5 | 059f8f6343ec2c5b00d03aae8209191e |
|
BLAKE2b-256 | 6cfc8a41b2a31fe30d1ec9e8125a1b9f0b9393a223a3546cf7ae800cf3f404e7 |