Metadata-Version: 2.1
Name: dict
Version: 2020.12.3
Summary: dict replacement
Home-page: https://github.com/andrewp-as-is/dict.py
License: Unlicense
Description: <!--
        https://readme42.com
        -->
        
        
        [![](https://img.shields.io/pypi/v/dict.svg?maxAge=3600)](https://pypi.org/project/dict/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        ### Installation
        ```bash
        $ [sudo] pip install dict
        ```
        
        #### Features
        *	**attribute-style access**
        * 	**None** instead of **KeyError**
        * 	safe **remove**
        * 	jQuery like **methods chaining**
        
        #### Examples
        ```python
        >>> from dict import dict
        
        >>> dict(k="v")["k"]
        "v"
        
        >>>  dict(k="v").k
        "v"
        
        >>> dict(k="v")["not_existing"]
        None
        
        >>> dict(k="v").not_existing
        None
        
        >>> dict(k="v").get("K",i=True) # case insensitive
        ```
        
        <p align="center">
            <a href="https://readme42.com/">readme42.com</a>
        </p>
Keywords: dict
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
