Metadata-Version: 2.1
Name: multivalued_dict
Version: 1.7.1
Summary: Multivalued dictionary package in python.
Home-page: https://github.com/fsssosei/MultivaluedDict
Author: sosei
Author-email: fss.sosei@gmail.com
License: GNU Affero General Public License v3
Description: # MultivaluedDict
        
        ![PyPI](https://img.shields.io/pypi/v/multivalued-dict?color=red)
        ![PyPI - Status](https://img.shields.io/pypi/status/multivalued-dict)
        ![GitHub Release Date](https://img.shields.io/github/release-date/fsssosei/MultivaluedDict)
        [![Build Status](https://scrutinizer-ci.com/g/fsssosei/MultivaluedDict/badges/build.png?b=master)](https://scrutinizer-ci.com/g/fsssosei/MultivaluedDict/build-status/master)
        [![Code Intelligence Status](https://scrutinizer-ci.com/g/fsssosei/MultivaluedDict/badges/code-intelligence.svg?b=master)](https://scrutinizer-ci.com/code-intelligence)
        [![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/fsssosei/MultivaluedDict.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/fsssosei/MultivaluedDict/context:python)
        [![Codacy Badge](https://api.codacy.com/project/badge/Grade/a486aacc36da4dea8016136bd0f52d5f)](https://www.codacy.com/app/fsssosei/MultivaluedDict?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=fsssosei/MultivaluedDict&amp;utm_campaign=Badge_Grade)
        [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/fsssosei/MultivaluedDict/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/fsssosei/MultivaluedDict/?branch=master)
        ![PyPI - Downloads](https://img.shields.io/pypi/dw/multivalued-dict?label=PyPI%20-%20Downloads)
        ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/multivalued-dict)
        ![PyPI - License](https://img.shields.io/pypi/l/multivalued-dict)
        
        *本包特点是跟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 *
        
        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()
        
Keywords: multivalued,dictionary
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
