Skip to main content

packge to allow defining an API via dictionaries

Project 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.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dappy-2.0.0.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

dappy-2.0.0-py2.py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page