Metadata-Version: 2.1
Name: adaendra_immutable_dict
Version: 0.3.0
Summary: An immutable dict
Home-page: https://github.com/Adaendra/immutable_dict
Author: Maxime G.
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Adaendra/immutable_dict/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Python Immutable Dict

![badge](https://img.shields.io/badge/version-0.3.0-blue)

This library contains the **ImmutableDict**, a Python dictionary which can't be updated.

## How to use it
1. Install it from [**pip**](https://pypi.org/project/adaendra-immutable-dict/)
> pip install adaendra-immutable-dict
2. Import the **AdaendreImmutableDict**
> from adaendra_immutable_dict.AdaendraImmutableDict import AdaendraImmutableDict
3. Use it like in the following examples.

### Examples
```python
from adaendra_immutable_dict.AdaendraImmutableDict import AdaendraImmutableDict


```


---

## Credits 
This project is based on Marco Sulla's project: [frozen-dict](https://github.com/Marco-Sulla/python-frozendict).


