Skip to main content

apiron helps you cook a tasty client for RESTful APIs. Just don't wash it with SOAP.

Project description

apiron

PyPI version Supported Python versions Build Status Documentation Status Contributor Covenant

apiron helps you cook a tasty client for RESTful APIs. Just don't wash it with SOAP.

Pie in a cast iron skillet

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(username='defunkt')
# {"name": "Chris Wanstrath", ...}

response = GitHub.repo(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-2021 Ithaka Harbors, Inc.

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

apiron-6.0.0.tar.gz (15.6 kB view details)

Uploaded Source

Built Distribution

apiron-6.0.0-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file apiron-6.0.0.tar.gz.

File metadata

  • Download URL: apiron-6.0.0.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for apiron-6.0.0.tar.gz
Algorithm Hash digest
SHA256 97271fd1935fdd9c650b4e49c7ac0320a1c3eefbf66ddfb3e253dbff84cb472d
MD5 09a31f6c755496942fd9757db0f83c07
BLAKE2b-256 f8335df1a3712dd4ae65fa0236bfabf363738e947a0c2e0cf8dca94d347b43a6

See more details on using hashes here.

File details

Details for the file apiron-6.0.0-py3-none-any.whl.

File metadata

  • Download URL: apiron-6.0.0-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for apiron-6.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a90f08b7ade5493f7d1fddebf9320aa6313b0a922e92783c185989606f6c9904
MD5 c02db78f15b4497d7f4834cfe8e9a854
BLAKE2b-256 cfd800d459df0d7a98db1e36d18835466ea03df2a29e4972fc266e9a13bb7482

See more details on using hashes here.

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