Skip to main content

Weak entry, strong value immutable registry data structure

Project description

https://github.com/brunonicko/registtro/workflows/MyPy/badge.svg https://github.com/brunonicko/registtro/workflows/Lint/badge.svg https://github.com/brunonicko/registtro/workflows/Tests/badge.svg https://readthedocs.org/projects/registtro/badge/?version=stable https://img.shields.io/github/license/brunonicko/registtro?color=light-green https://static.pepy.tech/personalized-badge/registtro?period=total&units=international_system&left_color=grey&right_color=brightgreen&left_text=Downloads https://img.shields.io/pypi/pyversions/registtro?color=light-green&style=flat

Overview

Registtro provides a weak entry, strong value immutable registry data structure. Think of it as an immutable WeakKeyDictionary.

Example

>>> from registtro import Registry
>>> class Entry:
...     pass
...
>>> # Initialize registry with 2 entries.
>>> entry_a = Entry()
>>> entry_b = Entry()
>>> registry = Registry({entry_a: 1, entry_b: 2})
>>> registry.query(entry_a)
1
>>> # Update a value and add a new entry, retrieve new registry (immutable).
>>> entry_c = Entry()
>>> registry = registry.update({entry_a: 10, entry_c: 3})
>>> registry.query(entry_a)
10
>>> registry.query(entry_c)
3
>>> # Get evolver and perform updates on it (mutable).
>>> evolver = registry.get_evolver()
>>> evolver.update({entry_b: 20})
<registtro._registry.RegistryEvolver object at ...>
>>> evolver.update({entry_c: 30})
<registtro._registry.RegistryEvolver object at ...>
>>> evolver.query(entry_c)
30
>>> # Freeze evolver into a registry (immutable).
>>> registry = evolver.get_registry()
>>> registry.query(entry_c)
30

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

registtro-1.1.0.tar.gz (6.2 kB view hashes)

Uploaded Source

Built Distribution

registtro-1.1.0-py2.py3-none-any.whl (5.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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