Metadata-Version: 1.1
Name: selectn
Version: 1.0.0
Summary: Resolves deeply-nested dictionary properties via dot-notation
Home-page: https://github.com/srn/selectn-py
Author: Søren Brokær
Author-email: root@srn.io
License: UNKNOWN
Download-URL: https://github.com/peterldowns/mypackage/tarball/1.0.0
Description: # selectn-py [![Build Status](http://img.shields.io/travis/srn/selectn-py.svg?style=flat-square)](https://travis-ci.org/srn/selectn-py)
        
        > Resolves deeply-nested dictionary properties via dot-notation
        
        Inspired by the node library [selectn](https://github.com/wilmoore/selectn.js)
        
        So you can do:
        
        ```python
        selectn('info.name.full', person);
        ```
        
        instead of:
        
        ```python
        person and person.get('info').get('name').get('full')
        ```
        
        ## Install
        
        ```sh
        $ pip install selectn-python
        ```
        
        ## Usage
        
        ```python
        from selectn import selectn
        
        dic = {'ay': {'yo'}}
        
        selectn('info.name.full', dic)
        ```
        
        ## License
        
        MIT © [Søren Brokær](http://srn.io)
        
Keywords: selectn,dictionary,dot,notation
Platform: UNKNOWN
