Metadata-Version: 2.1
Name: django-bulk-tracker
Version: 0.2.0
Summary: A Django app that allows you to have more control over bulk operations.
Home-page: https://github.com/hassaanalansary/django-bulk-tracker
Author: Hassaan Alansary
Author-email: hassaanalansary@yahoo.com
License: Mozilla Public License 2.0
Keywords: django,django-bulk-tracker,bulk-update,bulk-create,signals,django-signals
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: Django>=3.2
Requires-Dist: django-model-utils>=4.0.0
Provides-Extra: testing
Requires-Dist: pytest>=7.2.1; extra == "testing"
Requires-Dist: tox>=4.4.5; extra == "testing"

django-bulk-tracker
===============

[![Build Status](https://github.com/hassaanalansary/django-bulk-tracker/actions/workflows/tests.yml/badge.svg)](https://github.com/hassaanalansary/django-bulk-tracker/actions)
[![Build Status](https://github.com/hassaanalansary/django-bulk-tracker/workflows/Test/badge.svg)](https://github.com/hassaanalansary/django-bulk-tracker/actions)
[![codecov](https://codecov.io/gh/hassaanalansary/django-bulk-tracker/branch/master/graph/badge.svg)](https://codecov.io/gh/hassaanalansary/django-bulk-tracker)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/django-bulk-tracker.svg)](https://pypi.python.org/pypi/django-bulk-tracker)
[![Supported Django versions](https://img.shields.io/pypi/djversions/django-bulk-tracker.svg)](https://pypi.python.org/pypi/django-bulk-tracker)

Documentation
=============
https://django-bulk-tracker.readthedocs.io/en/latest/

Run tests
==========
```shell
pip install -r requirements_dev.txt
pytest
```
Here's the provided text translated from reStructuredText (.rst) format to Markdown (.md):

Usage
=====

`django-bulk-tracker` will emit a signal whenever you update, create, or delete a record in the database.

`django-bulk-tracker` supports bulk operations:

- `queryset.update()`
- `queryset.bulk_update()`
- `queryset.bulk_create()`
- `queryset.delete()`

and single operations:

- `create()`
- `save() # update and create`
- `delete()`

All you need to do is define your Model and inherit from:

```python
from bulk_tracker.models import BulkTrackerModel

class Author(BulkTrackerModel):
    first_name = models.CharField(max_length=200)
    last_name = models.CharField(max_length=200)
```

OR if you have a custom queryset inherit from or Don't want to support single-operation:

```python
from bulk_tracker.managers import BulkTrackerQuerySet

class MyModelQuerySet(BulkTrackerQuerySet):
    def do_something_custom(self):
        pass
```

Now you can listen to the signals `post_update_signal`, `post_create_signal`, `post_delete_signal`:

```python
@receiver(post_update_signal, sender=MyModel)
def i_am_a_receiver_function(
    sender,
    objects: list[ModifiedObject[MyModel]],
    tracking_info_: TrackingInfo | None = None,
    **kwargs,
):
    do_stuff()
```

**Hint:** All signals have the same signature for consistency and also in case you want to assign one function to listen to multiple signals.

`ModifiedObject` is a very simple object, it contains 2 attributes:
1. `instance` this is your model instance after it has been updated, or created
2. `changed_values` is a dict[str, Any] which contains the changed fields only in the case of `post_update_signal`, in the case of `post_create_signal` and `post_delete_signal`, `changed_values` will be an empty dict `{}`.

**Optionally** you can pass `tracking_info_` to your functions, as in:

```python
from bulk_tracker.helper_objects import TrackingInfo

def a_function_that_updates_records():
    user = self.request.user
    MyModel.objects.filter(name='john').update(
        name='jack',
        tracking_info_=TrackingInfo(user=user, comment="Updated from a function", kwargs={'app-build':'1.1.8'}, is_robust=True),
        )
```

**Hint:** `tracking_info_` has a trailing underscore to avoid collision with your actual fields. You can use `TrackingInfo` to implement any kind of behavior like logging in your signal handlers and you need to capture more info about the operation that is happening.

For single operations as well
-----------------------------

- `create()`
- `save() # update and create`
- `delete()`

To support, we rely on the amazing library `django-model-utils` to track the model instances:

1. Do the above
2. You need to inherit your model from `BulkTrackerModel`
3. Add `tracker = FieldTracker()` to your model

As in:

```python
from bulk_tracker.models import BulkTrackerModel
from model_utils import FieldTracker

class MyModel(BulkTrackerModel):
    objects = MyModelQuerySet.as_manager() # MyModelManager() if you have
    tracker = FieldTracker()
```

Robust Send
----------

`robust_send` if you have multiple receivers for the same signal, and you want to make sure that all of them are executed, even if one of them raises an exception. You can add `TrackingInfo(is_robust=True)` in your operation. You can read more about `robust_send` in the [official documentation](https://docs.djangoproject.com/en/5.0/topics/signals/#sending-signals).

As in:

```python
MyModel.objects.filter(name='john').update(
    name='jack',
    tracking_info_=TrackingInfo(is_robust=True),
)
```

Complete Example
================

```python
# models.py
from bulk_tracker.models import BulkTrackerModel
from model_utils import FieldTracker

from myapp.managers import MyModelManager

class MyModel(BulkTrackerModel):
    first_field = models.CharField()
    second_field = models.CharField()

    objects = MyModelManager()
    tracker = FieldTracker()
```

```python
# managers.py
from bulk_tracker.managers import BulkTrackerQuerySet # optional

class MyModelQuerySet(BulkTrackerQuerySet):
    pass

class MyModelManager(BulkTrackerManager.from_queryset(MyModelQuerySet)): # optional
    pass
```

```python
# signal_handlers.py
from bulk_tracker.signals import post_update_signal
from bulk_tracker.helper_objects import ModifiedObject, TrackingInfo

@receiver(post_update_signal, sender=MyModel)
def i_am_a_receiver_function(
    sender,
    objects: list[ModifiedObject[MyModel]],
    tracking_info_: TrackingInfo | None = None,
    **kwargs,
):
    user = tracking_info_.user if tracking_info_ else None
    for modified_object in modified_objects:
        if 'name' in modified_object.changed_values:
            log(f"field 'name' has changed by {user or ''}")
            notify_user()
```



Usage
=====

`django-bulk-tracker` will emit a signal whenever you update, create, or delete a record in the database.

`django-bulk-tracker` supports bulk operations:

- `queryset.update()`
- `queryset.bulk_update()`
- `queryset.bulk_create()`
- `queryset.delete()`

and single operations:

- `create()`
- `save() # update and create`
- `delete()`

All you need to do is define your Model and inherit from:

```python
from bulk_tracker.models import BulkTrackerModel

class Author(BulkTrackerModel):
    first_name = models.CharField(max_length=200)
    last_name = models.CharField(max_length=200)
```

OR if you have a custom queryset inherit from or Don't want to support single-operation:

```python
from bulk_tracker.managers import BulkTrackerQuerySet

class MyModelQuerySet(BulkTrackerQuerySet):
    def do_something_custom(self):
        pass
```

Now you can listen to the signals `post_update_signal`, `post_create_signal`, `post_delete_signal`:

```python
@receiver(post_update_signal, sender=MyModel)
def i_am_a_receiver_function(
    sender,
    objects: list[ModifiedObject[MyModel]],
    tracking_info_: TrackingInfo | None = None,
    **kwargs,
):
    do_stuff()
```

**Hint:** All signals have the same signature for consistency and also in case you want to assign one function to listen to multiple signals.

`ModifiedObject` is a very simple object, it contains 2 attributes:
1. `instance` this is your model instance after it has been updated, or created
2. `changed_values` is a dict[str, Any] which contains the changed fields only in the case of `post_update_signal`, in the case of `post_create_signal` and `post_delete_signal`, `changed_values` will be an empty dict `{}`.

**Optionally** you can pass `tracking_info_` to your functions, as in:

```python
from bulk_tracker.helper_objects import TrackingInfo

def a_function_that_updates_records():
    user = self.request.user
    MyModel.objects.filter(name='john').update(
        name='jack',
        tracking_info_=TrackingInfo(user=user, comment="Updated from a function", kwargs={'app-build':'1.1.8'}, is_robust=True),
        )
```

**Hint:** `tracking_info_` has a trailing underscore to avoid collision with your actual fields. You can use `TrackingInfo` to implement any kind of behavior like logging in your signal handlers and you need to capture more info about the operation that is happening.

For single operations as well
-----------------------------

- `create()`
- `save() # update and create`
- `delete()`

To support, we rely on the amazing library `django-model-utils` to track the model instances:

1. Do the above
2. You need to inherit your model from `BulkTrackerModel`
3. Add `tracker = FieldTracker()` to your model

As in:

```python
from bulk_tracker.models import BulkTrackerModel
from model_utils import FieldTracker

class MyModel(BulkTrackerModel):
    objects = MyModelQuerySet.as_manager() # MyModelManager() if you have
    tracker = FieldTracker()
```

Robust Send
----------

`robust_send` if you have multiple receivers for the same signal, and you want to make sure that all of them are executed, even if one of them raises an exception. You can add `TrackingInfo(is_robust=True)` in your operation. You can read more about `robust_send` in the [official documentation](https://docs.djangoproject.com/en/5.0/topics/signals/#sending-signals).

As in:

```python
MyModel.objects.filter(name='john').update(
    name='jack',
    tracking_info_=TrackingInfo(is_robust=True),
)
```

Complete Example
================

```python
# models.py
from bulk_tracker.models import BulkTrackerModel
from model_utils import FieldTracker

from myapp.managers import MyModelManager

class MyModel(BulkTrackerModel):
    first_field = models.CharField()
    second_field = models.CharField()

    objects = MyModelManager()
    tracker = FieldTracker()
```

```python
# managers.py
from bulk_tracker.managers import BulkTrackerQuerySet # optional

class MyModelQuerySet(BulkTrackerQuerySet):
    pass

class MyModelManager(BulkTrackerManager.from_queryset(MyModelQuerySet)): # optional
    pass
```

```python
# signal_handlers.py
from bulk_tracker.signals import post_update_signal
from bulk_tracker.helper_objects import ModifiedObject, TrackingInfo

@receiver(post_update_signal, sender=MyModel)
def i_am_a_receiver_function(
    sender,
    objects: list[ModifiedObject[MyModel]],
    tracking_info_: TrackingInfo | None = None,
    **kwargs,
):
    user = tracking_info_.user if tracking_info_ else None
    for modified_object in modified_objects:
        if 'name' in modified_object.changed_values:
            log(f"field 'name' has changed by {user or ''}")
            notify_user()
```



Usage
=====

`django-bulk-tracker` will emit a signal whenever you update, create, or delete a record in the database.

`django-bulk-tracker` supports bulk operations:

- `queryset.update()`
- `queryset.bulk_update()`
- `queryset.bulk_create()`
- `queryset.delete()`

and single operations:

- `create()`
- `save() # update and create`
- `delete()`

All you need to do is define your Model and inherit from:

```python
from bulk_tracker.models import BulkTrackerModel

class Author(BulkTrackerModel):
    first_name = models.CharField(max_length=200)
    last_name = models.CharField(max_length=200)
```

OR if you have a custom queryset inherit from or Don't want to support single-operation:

```python
from bulk_tracker.managers import BulkTrackerQuerySet

class MyModelQuerySet(BulkTrackerQuerySet):
    def do_something_custom(self):
        pass
```

Now you can listen to the signals `post_update_signal`, `post_create_signal`, `post_delete_signal`:

```python
@receiver(post_update_signal, sender=MyModel)
def i_am_a_receiver_function(
    sender,
    objects: list[ModifiedObject[MyModel]],
    tracking_info_: TrackingInfo | None = None,
    **kwargs,
):
    do_stuff()
```

**Hint:** All signals have the same signature for consistency and also in case you want to assign one function to listen to multiple signals.

`ModifiedObject` is a very simple object, it contains 2 attributes:
1. `instance` this is your model instance after it has been updated, or created
2. `changed_values` is a dict[str, Any] which contains the changed fields only in the case of `post_update_signal`, in the case of `post_create_signal` and `post_delete_signal`, `changed_values` will be an empty dict `{}`.

**Optionally** you can pass `tracking_info_` to your functions, as in:

```python
from bulk_tracker.helper_objects import TrackingInfo

def a_function_that_updates_records():
    user = self.request.user
    MyModel.objects.filter(name='john').update(
        name='jack',
        tracking_info_=TrackingInfo(user=user, comment="Updated from a function", kwargs={'app-build':'1.1.8'}, is_robust=True),
        )
```

**Hint:** `tracking_info_` has a trailing underscore to avoid collision with your actual fields. You can use `TrackingInfo` to implement any kind of behavior like logging in your signal handlers and you need to capture more info about the operation that is happening.

For single operations as well
-----------------------------

- `create()`
- `save() # update and create`
- `delete()`

To support, we rely on the amazing library `django-model-utils` to track the model instances:

1. Do the above
2. You need to inherit your model from `BulkTrackerModel`
3. Add `tracker = FieldTracker()` to your model

As in:

```python
from bulk_tracker.models import BulkTrackerModel
from model_utils import FieldTracker

class MyModel(BulkTrackerModel):
    objects = MyModelQuerySet.as_manager() # MyModelManager() if you have
    tracker = FieldTracker()
```

Robust Send
----------

`robust_send` if you have multiple receivers for the same signal, and you want to make sure that all of them are executed, even if one of them raises an exception. You can add `TrackingInfo(is_robust=True)` in your operation. You can read more about `robust_send` in the [official documentation](https://docs.djangoproject.com/en/5.0/topics/signals/#sending-signals).

As in:

```python
MyModel.objects.filter(name='john').update(
    name='jack',
    tracking_info_=TrackingInfo(is_robust=True),
)
```

Complete Example
================

```python
# models.py
from bulk_tracker.models import BulkTrackerModel
from model_utils import FieldTracker

from myapp.managers import MyModelManager

class MyModel(BulkTrackerModel):
    first_field = models.CharField()
    second_field = models.CharField()

    objects = MyModelManager()
    tracker = FieldTracker()
```

```python
# managers.py
from bulk_tracker.managers import BulkTrackerQuerySet # optional

class MyModelQuerySet(BulkTrackerQuerySet):
    pass

class MyModelManager(BulkTrackerManager.from_queryset(MyModelQuerySet)): # optional
    pass
```

```python
# signal_handlers.py
from bulk_tracker.signals import post_update_signal
from bulk_tracker.helper_objects import ModifiedObject, TrackingInfo

@receiver(post_update_signal, sender=MyModel)
def i_am_a_receiver_function(
    sender,
    objects: list[ModifiedObject[MyModel]],
    tracking_info_: TrackingInfo | None = None,
    **kwargs,
):
    user = tracking_info_.user if tracking_info_ else None
    for modified_object in modified_objects:
        if 'name' in modified_object.changed_values:
            log(f"field 'name' has changed by {user or ''}")
            notify_user()
```



Contribute
==========

If you have great ideas for django-bulk-tracker, or if you like to improve something,
feel free to fork this repository and/or create a pull request.
I'm open for suggestions.
If you like to discuss something with me (about django-bulk-tracker), please open an issue.


#### GitHub repository: https://github.com/hassaanalansary/django-bulk-tracker
#### issue tracker: https://github.com/hassaanalansary/django-bulk-tracker/issues
