Skip to main content

Multivalued dictionary package in python.

Project description

MultivaluedDict

Language grade: Python Codacy Badge Scrutinizer Code Quality Build Status Code Intelligence Status

本包特点是跟dict原生类型用例高度一致,包括发生异常的类型。在此基础上增添了一些专门的多值字典方法。

欢迎补全文档。

Multivalued dictionary package in python.

Welcome to complete the documentation.

Installation

Installation can be done through pip. You must have python version >= 3.6.

pip install multivalued_dict

Usage

The statement to import the package:

from multivalued_dict_package import multivalued_dict

or

from multivalued_dict_package import *


>>> mv_d = multivalued_dict()

>>> mv_d

multivalued_dict({})


>>> mv_d = multivalued_dict({'a': 'test-1', 'b': 'test-2', 'c': 'test-3'})

>>> mv_d

multivalued_dict({'a': ['test-1'], 'b': ['test-2'], 'c': ['test-3']})


>>> 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 mvd
mvd.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.4.2.tar.gz (6.2 kB view hashes)

Uploaded Source

Built Distribution

multivalued_dict-1.4.2-py3-none-any.whl (21.2 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