Skip to main content

Accretive data structures.

Project description

Package Version PyPI - Status Tests Status Code Coverage Percentage Project License Python Versions

🌌 A Python library package which provides accretive data structures - collections which can grow but never shrink.

Key Features ⭐

  • 📖 Accretive Dictionary: Like a regular dict, but entries cannot be modified or removed once added. Also has variants with defaults and validation.

  • 🗃️ Accretive Namespace: Similar to SimpleNamespace, but attributes become immutable after assignment.

  • 🧱 Additional Types: Classes (including abstract base classes), modules, and objects with accretive behavior.

  • 🏗️ Flexible Initialization: Support for unprotected attributes during initialization; useful for compatibility with class decorators, such as dataclasses.

  • 🔓 Flexible Mutability: Support for declaring specific attributes as mutable, enabling selective modification while maintaining immutability for other attributes.

Installation 📦

pip install accretive

Note on Immutability 📢

Enforcement of immutability is quite difficult in Python. While this library encourages immutability by default, it can be circumvented by anyone who has intermediate knowledge of Python machinery and who is determined to circumvent the immutability. Use the library in the spirit of making programs safer, but understand that it cannot truly prevent unwanted state tampering.

Examples 💡

Accretive Namespaces 🗃️

An accretive namespace, similar to types.SimpleNamespace, is available. This namespace can be initialized from multiple iterables and from keyword arguments. (Keyword arguments shown below; see documentation for additional forms of initialization.)

>>> from accretive import Namespace
>>> ns = Namespace( apples = 12, bananas = 6 )
>>> ns.cherries = 42  # ✅ Allows new attributes.
>>> ns.apples = 14    # ❌ Attempted reassignment raises error.
Traceback (most recent call last):
...
accretive.exceptions.AttributeImmutability: Could not assign or delete existing attribute 'apples'.
>>> del ns.apples     # ❌ Attempted deletion raises error.
Traceback (most recent call last):
...
accretive.exceptions.AttributeImmutability: Could not assign or delete existing attribute 'apples'.
>>> ns
accretive.namespaces.Namespace( apples = 12, bananas = 6, cherries = 42 )

Accretive Dictionaries 📖

An accretive dictionary, similar to dict, is available. This dictionary can be initialized from multiple iterables and from keyword arguments. (Keyword arguments shown below; see documentation for additional forms of initialization.)

>>> from accretive import Dictionary
>>> dct = Dictionary( apples = 12, bananas = 6 )
>>> dct[ 'cherries' ] = 42  # ✅ Allows new entries.
>>> dct.update( blueberries = 96, strawberries = 24 )
accretive.dictionaries.Dictionary( {'apples': 12, 'bananas': 6, 'cherries': 42, 'blueberries': 96, 'strawberries': 24} )
>>> dct[ 'bananas' ] = 11   # ❌ Attempted alteration raises error.
Traceback (most recent call last):
...
accretive.exceptions.EntryImmutability: Could not alter or remove existing entry for 'bananas'.
>>> del dct[ 'bananas' ]    # ❌ Attempted removal raises error.
Traceback (most recent call last):
...
accretive.exceptions.EntryImmutability: Could not alter or remove existing entry for 'bananas'.
>>> dct
accretive.dictionaries.Dictionary( {'apples': 12, 'bananas': 6, 'cherries': 42, 'blueberries': 96, 'strawberries': 24} )

Accretive Objects 🧱

The accretive decorator can be applied to any class to make its instances enforce attribute immutability after assignment.

>>> from accretive import with_standard_behaviors
>>> @with_standard_behaviors
... class Config:
...     def __init__( self, debug = False ):
...         self.debug = debug
...
>>> config = Config( debug = True )
>>> config.verbose = True  # ✅ Allows new attributes
>>> config.debug = False   # ❌ Attempted reassignment raises error
Traceback (most recent call last):
...
accretive.exceptions.AttributeImmutability: Could not assign or delete existing attribute 'debug'.

Use Cases 🎯

  • 📝 Configuration Registries: Registries which can accumulate entries but never remove them, thereby guaranteeing sticky state.

  • 🔌 Plugin Systems: Register extensions which are then guaranteed to be available from the time of registration to the end of the process.

  • 🔒 Immutable Collections: Many scenarios requiring grow-only collections with immutability guarantees.

More Flair

GitHub last commit Copier Hatch pre-commit Pyright Ruff PyPI - Implementation PyPI - Wheel

Other Projects by This Author 🌟

  • python-absence (absence on PyPI)

    🕳️ A Python library package which provides a sentinel for absent values - a falsey, immutable singleton that represents the absence of a value in contexts where None or False may be valid values.

  • python-classcore (classcore on PyPI)

    🏭 A Python library package which provides foundational class factories and decorators for providing classes with attributes immutability and concealment and other custom behaviors.

  • python-dynadoc (dynadoc on PyPI)

    📝 A Python library package which bridges the gap between rich annotations and automatic documentation generation with configurable renderers and support for reusable fragments.

  • python-falsifier (falsifier on PyPI)

    🎭 A very simple Python library package which provides a base class for falsey objects - objects that evaluate to False in boolean contexts.

  • python-frigid (frigid on PyPI)

    🔒 A Python library package which provides immutable data structures - collections which cannot be modified after creation.

  • python-icecream-truck (icecream-truck on PyPI)

    🍦 Flavorful Debugging - A Python library which enhances the powerful and well-known icecream package with flavored traces, configuration hierarchies, customized outputs, ready-made recipes, and more.

  • python-mimeogram (mimeogram on PyPI)

    📨 A command-line tool for exchanging collections of files with Large Language Models - bundle multiple files into a single clipboard-ready document while preserving directory structure and metadata… good for code reviews, project sharing, and LLM interactions.

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

accretive-4.0rc0.tar.gz (20.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

accretive-4.0rc0-py3-none-any.whl (29.6 kB view details)

Uploaded Python 3

File details

Details for the file accretive-4.0rc0.tar.gz.

File metadata

  • Download URL: accretive-4.0rc0.tar.gz
  • Upload date:
  • Size: 20.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for accretive-4.0rc0.tar.gz
Algorithm Hash digest
SHA256 f2ab134ba5f655b1c136eede8da17529506241cbe3cf95fecf845ee18f4dabb5
MD5 a7aadf90b137667f9402dc2e6225e131
BLAKE2b-256 65a7e755e15db0967f59235e8a0c0b5dad2500df8ba6db98af34a84aff9eb3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for accretive-4.0rc0.tar.gz:

Publisher: releaser.yaml on emcd/python-accretive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accretive-4.0rc0-py3-none-any.whl.

File metadata

  • Download URL: accretive-4.0rc0-py3-none-any.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for accretive-4.0rc0-py3-none-any.whl
Algorithm Hash digest
SHA256 4e8becdd34b978e4336308eb0418fcec1379444f123a648c18a0c7a61d82b3f9
MD5 a32674938d4a52f27fc8f1af4d242a35
BLAKE2b-256 a030cb8d7ca1938c61122d1618aba20ad223bc47be869ca14e0f4a5985a0d58e

See more details on using hashes here.

Provenance

The following attestation bundles were made for accretive-4.0rc0-py3-none-any.whl:

Publisher: releaser.yaml on emcd/python-accretive

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page