Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-bulk-signals

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-bulk-signals

A product aggregation function to a postgres database and makes it available with django

  • 0.4.2
  • PyPI
  • Socket score

Maintainers
1

GitHub version PyPI version

Testing CodeFactor codecov

Summary

This django library adds signals for the bulk database actions provided by django (bulk_create, bulk_update and QuerySet.update)

usage

Add app to settings

INSTALLED_APPS = [
    ...,
    bulk_signals,
    ...
]

Import signals and connect.The signals are connected the same way as in Django itself. To see them in action use the following snippet:

from django.dispatch import receiver
from bulk_signals import signals

@receiver(signals.pre_bulk_update, signals.post_bulk_update, signals.post_query_update)
def debug(*args, **kwargs):
    print(args)
    print(kwargs)

You can skip the signals on a single execution by using the skip_signal=True keyword argument. Which keyword should be used for skipping is configurable via the BULK_SIGNALS_SKIP_KEY="skip_signal" configuration in the django settings.

TODO

  • test against different database backends

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc