dirtyflags is a simple Python decorator that tracks when and which instance attributes have changed.
Project description
dirtyflags
dirtyflags is a simple Python decorator that tracks when and which instance attributes have changed.
>>> from dirtyflags import dirtyflag
>>> @dirtyflag
>>> class ChangingObject():
>>> def __init__(self, attr1: int, attr2: str = "Default Value"):
>>> self.attr1 = attr1
>>> self.attr2 = attr2
>>>
>>> def __str__(self):
>>> return (f"attr1 = {self.attr1}, attr2='{self.attr2}'")
>>> # create an instance of the class
instance_default = ChangingObject(attr1=1)
>>> print(f"instance_default is: {instance_default}")
instance_default is: attr1 = 1, attr2='Default Value'
>>> # dirtyflags tracks whether a change has occurred - in this case it has not
>>> print(f"Has this instance changed = {instance_default.is_dirty()}")
Has this instance changed = False
>>> # now change the value of an attribute
>>> instance_default.attr1 = 234
>>> # now dirty flag indicates the class has changed - and tells you what has changed
>>> print(f"Has this instance changed = {instance_default.is_dirty()}")
>>> print(f"The attribute(s) that have changed: {instance_default.dirty_attrs()}")
Has this instance changed = True
The attribute(s) that have changed: {'attr1'}
>>> # dirtyflags even tracks changes when using __setter__
>>> instance_default.__setattr__('attr2', 'changed the default')
>>> print(f"Has this instance changed = {instance_default.is_dirty()}")
>>> print(f"The attribute(s) that have changed: {instance_default.dirty_attrs()}")
Has this instance changed = True
The attribute(s) that have changed: {'attr2', 'attr1'}
Installing dirtyflags
pip install dirtyflags
dirtyflags officially supports Python 3.8+
Supported Features and Best Practices
- Sinmply use the
@dirtyflag
decorator - Supports attributes of any datatype, built-in or custom
- Works with Python dataclasses
- Nested classes should have the '@dirtyflag' decorator applied as well
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
dirtyflags-1.1.1.tar.gz
(4.6 kB
view details)
Built Distribution
File details
Details for the file dirtyflags-1.1.1.tar.gz
.
File metadata
- Download URL: dirtyflags-1.1.1.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb1d877fe5e8f8c64a50b10a053b6696b05a7ba0acc358c4b6e4a64db2540802 |
|
MD5 | 1d0659025e5af951de2480816d3d5c6a |
|
BLAKE2b-256 | a8e72b1259d602c8557e76f85975476241e18bfb5df239b1ba0e38a9a08209f1 |
File details
Details for the file dirtyflags-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: dirtyflags-1.1.1-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5a2c47a10c192a13d93bea94b0c70648f91c08989a22f876e5ce1ec2e0ebe23 |
|
MD5 | 8972806a75f4dc4a1b211471a0a79e64 |
|
BLAKE2b-256 | e4ddb0e6ed7539db5968f3b2db2c9d68e5f3810eb66f595ce50b8f661261d0a2 |