Metadata-Version: 1.1
Name: dappy
Version: 2.0.0
Summary: packge to allow defining an API via dictionaries
Home-page: https://gitlab.com/heathercreech/dappy
Author: Heather Creech
Author-email: heatherannecreech@gmail.com
License: MIT license
Description: # dappy
        
        package to allow defining an API declaratively
        
        
        ## Example
        
        ```python
        from dappy import API, Endpoint
        ItunesAPI = API('itunes.apple.com', [
            Endpoint(
                'search', '/search',
                query_map={ 'search_string': 'term' }
            ),
            Endpoint('get', '/lookup', defaults={'id': '656270845'})
        ])
        ItunesAPI.search(search_string='Hello, World')
        ItunesAPI.get()
        ```
        
        * Free software: MIT license
        * Documentation: https://dappy.readthedocs.io.
        
        
        =======
        History
        =======
        
        0.1.0 (2017-09-13)
        ------------------
        
        * First release on PyPI.
        
Keywords: dappy
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
