Metadata-Version: 2.1
Name: immutabledict
Version: 0.1.2
Summary: Immutable wrapper around dictionaries
Home-page: https://github.com/corenting/immutabledict
License: MIT
Keywords: immutable,dictionary
Author: Corentin Garcia
Author-email: corenting@gmail.com
Requires-Python: >=3.5,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Project-URL: Bug Tracker, https://github.com/corenting/immutabledict/issues
Project-URL: Repository, https://github.com/corenting/immutabledict
Description-Content-Type: text/markdown

# immutabledict

![PyPI](https://img.shields.io/pypi/v/immutabledict) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/immutabledict) ![License](https://img.shields.io/pypi/l/immutabledict) ![Build](https://img.shields.io/travis/com/corenting/immutabledict) ![Codecov](https://img.shields.io/codecov/c/github/corenting/immutabledict)

A fork of ``frozendict``, an immutable wrapper around dictionaries.

See the original project here: https://github.com/slezica/python-frozendict .

## Differences with frozendict

- Dropped support of Python 2
- Fixed `collections.Mapping` deprecation warning

