Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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_mapping

m = collections_mapping.Mapping()

m['key'] = 'value'
```

### Install collections-mapping

```python
$ pip install collections-mapping
```