Skip to main content

A module that aggregates key-value attributes from multiple sources

Project description

Allows to aggregate key-value data from many sources.
Can be used, for example, as a proxy to settings object in Django framework.

The sources of key-value data are appended to :class:`MultiRegistry`
vi ``append()`` method, then looked up via standard Python
dotted notation, as explained in more detail below.

Upon access, attributes will be looked up in the parent objects
in the order the latter were appended.

For example, if we have two settings like objects:
``A`` with attribute ``a``
and ``B`` with attribute ``b``
and a third one, found in module importable from ``'some.registry.C'``,
we can construct the registry as:

>>>r = MultiRegistry(A, B, 'some.registry.C')

or alternatively:

>>>r = MultiRegistry()
>>>r.append(A)
>>>r.append(B)
>>>r.insert(2, 'some.registry.C')

.. note::
The registries can be provided as python objects or
dotted python paths. In the latter case an import error will
be raised if module at the path does not exist

then access the registry as:

r.b - attrubute b will be first looked
up in the object A, then in the object B, where
it will be found.

If there is an attribute present in more than one appended object,
the first one will be returned - in the same order the
registries are stored internally, which takes into account:

* order the registries were provided at the object initialization
* order of ``append()`` calls.
* taking into account indices provided with ``insert()`` call

If the attribute is not found, attribute error will be
raised.

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

multi-registry-0.0.2.tar.gz (7.7 kB view details)

Uploaded Source

File details

Details for the file multi-registry-0.0.2.tar.gz.

File metadata

File hashes

Hashes for multi-registry-0.0.2.tar.gz
Algorithm Hash digest
SHA256 c5e0f819cbd2520031271f9627314aec68066a423cfb8a49082017b2c46d9d4a
MD5 611e08174875bc63ff6ebacb6a5757a9
BLAKE2b-256 f0f7f64cb2047ac63ebea54f7c52f3a0b27133427798881548956569bdc31435

See more details on using hashes here.

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