Provides mixins and view sets for bulk create, update, and delete operations in Django REST Framework. Current version 0.2.1 is in maintenance mode; no active development.
pip install djangorestframework-bulkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic viewset supporting bulk create, update, and delete
Monitor DRF compatibility; for recent DRF, use drf-bulk or custom views.
Always include the primary key field in bulk update payloads, e.g., [{'id': 1, 'field': 'value'}]Add method: def allow_bulk_destroy(self, request, *args, **kwargs): return True