Skip to main content

Multivalued dictionary package in python.

Project description

MultivaluedDict

PyPI PyPI - Status GitHub Release Date Build Status Code Intelligence Status Language grade: Python Codacy Badge Scrutinizer Code Quality PyPI - Downloads PyPI - Python Version PyPI - License

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

multivalued_dict-1.7.6.tar.gz (6.4 kB view hashes)

Uploaded Source

Built Distribution

multivalued_dict-1.7.6-py3-none-any.whl (21.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page