Skip to main content

A small Aha.io API client

Project description

ahapy

PyPI version

A small Aha.io API client. The package handles authentication and pagination, giving the user exactly the information they seek.

This is in no way associated with Aha.io. For Aha.io API documentation, please visit aha.io/api.

Install

pip install ahapy

Usage

After importing the library, create an instance of AhaV1 by providing your subdomain from https://[my-subdomain].aha.io/ and your API key.

from ahapy import AhaV1

aha = AhaV1('<your-sub-domain>', '<your-api-key>')

Create a simple query by running the query method, giving the method the desired endpoint.

data = aha.query('initiatives')

for i in data:
    print(i)

While using the query method, you can specify page size and customize the fields to be returned.

data = aha.query('initiatives', per_page=200, fields='name,id')

for i in data:
    print(i)

After running a query, you can check if the number of record receieved is the number that was expected.

data = aha.query('initiatives')

if len(data) == aha.count:
    print('Records returned match expectation.')

The endpoint argument can be 'overloaded' to accommodate searches for objects by foriegn key. The actual endpoint is parsed and available on .endpoint member

aha.query('initiatives/' + initiative_id + '/epics')

print(aha.endpoint)
# epics

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

ahapy-0.0.7.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

ahapy-0.0.7-py3-none-any.whl (3.7 kB view hashes)

Uploaded 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