Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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.
pip install ahapy
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
FAQs
A small Aha.io API client
We found that ahapy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.