Metadata-Version: 2.0
Name: dappy
Version: 2.0.1
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-Content-Type: UNKNOWN
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
Requires-Dist: requests (>=2.18.4)

# 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(query={
    '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.


