Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imyizhang/collections-mapping
Specialized container datatypes providing dict-like key-value mapping objects
https://github.com/imyizhang/collections-mapping
Last synced: about 2 months ago
JSON representation
Specialized container datatypes providing dict-like key-value mapping objects
- Host: GitHub
- URL: https://github.com/imyizhang/collections-mapping
- Owner: imyizhang
- License: mit
- Created: 2022-03-01T11:40:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-01T11:45:20.000Z (almost 3 years ago)
- Last Synced: 2024-10-14T05:07:57.527Z (2 months ago)
- Language: Python
- Homepage: https://pypi.org/project/collections-mapping/
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# collections-mapping
collections-mapping are
* specialized container datatypes providing dict-like key-value mapping objects
## Quickstart
```python
import collections_mappingm = collections_mapping.Mapping()
m['key'] = 'value'
```### Install collections-mapping
```python
$ pip install collections-mapping
```