Immutable wrapper around dictionaries (a fork of frozendict)
Project description
immutabledict
A fork of the original frozendict, an immutable wrapper around dictionaries. This library is a pure Python, MIT-licensed alternative to the new LGPL-3.0 licensed frozendict.
It implements the complete mapping interface and can be used as a drop-in replacement for dictionaries where immutability is desired. The immutabledict constructor mimics dict, and all of the expected interfaces (iter, len, repr, hash, getitem) are provided. Note that an immutabledict does not guarantee the immutability of its values, so the utility of hash method is restricted by usage.
Installation
Official release in on pypy as immutabledict
.
Community-maintained releases are available:
- On conda-forge as
immutabledict
- On various package repositories
Example
from immutabledict import immutabledict
my_item = immutabledict({"a": "value", "b": "other_value"})
print(my_item["a"]) # Print "value"
Differences with the old original frozendict package
- Dropped support of EOL Python versions (older versions of the library may support older Python versions)
- Fixed
collections.Mapping
deprecation warning - Typing
- PEP 584 union operators
- Keep the same signature for
copy()
asdict
(starting with immutabledict 3.0.0), don't accept extra keyword arguments.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for immutabledict-3.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 034bacc6c6872707c4ec0ea9515de6bbe0dcf0fcabd97ae19fd4e4c338f05798 |
|
MD5 | 2ed032c65dbf295bbc0be3f9e425838e |
|
BLAKE2b-256 | dfefe038d0d7cd1954c46402a0c27794dd93982c40632085046efb6ab8aa6c1d |