apiron helps you cook a tasty client for RESTful APIs. Just don't wash it with SOAP.
Project description
apiron
apiron
helps you cook a tasty client for RESTful APIs. Just don't wash it with SOAP.
Gathering data from multiple services has become a ubiquitous task for web application developers. The complexity can grow quickly: calling an API endpoint with multiple parameter sets, calling multiple API endpoints, calling multiple endpoints in multiple APIs. While the business logic can get hairy, the code to interact with those APIs doesn't have to.
apiron
provides declarative, structured configuration of services and endpoints
with a unified interface for interacting with them.
Defining a service
A service definition requires a domain and one or more endpoints with which to interact:
from apiron import JsonEndpoint, Service
class GitHub(Service):
domain = 'https://api.github.com'
user = JsonEndpoint(path='/users/{username}')
repo = JsonEndpoint(path='/repos/{org}/{repo}')
Interacting with a service
Once your service definition is in place, you can interact with its endpoints:
response = GitHub.user(
path_kwargs={'username': 'defunkt'},
) # {"name": "Chris Wanstrath", ...}
response = GitHub.repo(
path_kwargs={'org': 'github', 'repo': 'hub'},
) # {"description": "hub helps you win at git.", ...}
To learn more about building clients, head over to the docs.
Contributing
We are happy to consider contributions via pull request, especially if they address an existing bug or vulnerability. Please read our contribution guidelines before getting started.
License
This package is available under the MIT license. For more information, view the full license and copyright notice.
Copyright 2018 Ithaka Harbors, Inc.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file apiron-2.4.0.tar.gz
.
File metadata
- Download URL: apiron-2.4.0.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.4.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 329ea2fc5e8cc201d6d82c8836d6ef94e3db3c3cb75b2af8c484aa655da75b3f |
|
MD5 | 5acb5a64bd3f575cbf7fc4246f2d488f |
|
BLAKE2b-256 | a35520b45cee3a92e943fb9f2fca79c24da9520b1cc2b29c3b155f993b724345 |
File details
Details for the file apiron-2.4.0-py3-none-any.whl
.
File metadata
- Download URL: apiron-2.4.0-py3-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.4.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86621b83db81ebf769617b7c6d997a14c9871760c0d54417d084314bbf9f6f29 |
|
MD5 | 3aa9cc482e21939967bf07dc37f16eea |
|
BLAKE2b-256 | 005f64110214cdee468a9a2029ff165db8617b396b9d10a68d1e2d1b1ff789f6 |