Multivalued dictionary package in python.
Project description
MultivaluedDict
Multivalued dictionary package in python.
This package features a high degree of consistency with the dict native type use case, including the type of exception that occurs.On this basis, some special multi-value dictionary methods are added.
Installation
Installation can be done through pip. You must have python version >= 3.7
pip install multivalued_dict
Usage
The statement to import the package:
from multivalued_dict_package import *
Example:
>>> mv_d = multivalued_dict()
>>> mv_d
multivalued_dict({})
>>> mv_d = multivalued_dict({'a': ['test-1', 'test-2', 'test-3'], 'b': 'test-4'})
>>> mv_d
multivalued_dict({'a': ['test-1', 'test-2', 'test-3'], 'b': ['test-4']})
>>> mv_d = multivalued_dict([['a', 'test-1'], ['b', 'test-2'], ['a', 'test-3']])
>>> mv_d
multivalued_dict({'a': ['test-1', 'test-3'], 'b': ['test-2']})
Statements for automated testing of modules:
import multivalued_dict_package.doctestmod_module as mvdt
mvdt.doctestmod()
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
File details
Details for the file multivalued_dict-2.0.1.tar.gz
.
File metadata
- Download URL: multivalued_dict-2.0.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6188d41921506570f1ce2e5fc0ede813d6112f2101394fb5f395cc7f55981884 |
|
MD5 | c429b5a802a813406298658565aad53e |
|
BLAKE2b-256 | 890426e0dfec68bb550b3c7a72539878ee6bbcf94a9c839bbee407f2cd0202c9 |
File details
Details for the file multivalued_dict-2.0.1-py3-none-any.whl
.
File metadata
- Download URL: multivalued_dict-2.0.1-py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb73cf37748d5d4dba92cd7d3153e4862f44d35cb9ac07b01a9de05d9875906f |
|
MD5 | 6458a9b3b6039acddf8891d4d33a74ec |
|
BLAKE2b-256 | 38d960639ea482acbf0d2defec1d2ab0f58f42bed65985a9e0beb5b9c6a70887 |