Wrapper around the inthe.am API
Project description
Python client module for the Inthe.AM REST API:
import asyncio, intheam, os
def print_task_list_ids(result):
for task in (yield from result):
print(task.uuid)
api = intheam.InTheAm(os.getenv("INTHEAM_API_TOKEN"))
asyncio.get_event_loop().run_until_complete(
print_task_list_ids(api.pending()))
Installation
The stable releases are uploaded to PyPI, so you can install them and upgrade using pip:
pip install intheam
Alternatively, you can install development versions —at your own risk— directly from the Git repository:
pip install -e git://github.com/aperezdc/intheam-python
Documentation
There is no documentation for now. In the meanwhile, please read the source code.
Development
If you want to contribute, please use the usual GitHub workflow:
Clone the repository.
Hack on your clone.
Send a pull request for review.
If you do not have programming skills, you can still contribute by reporting issues that you may encounter.
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
intheam-0.0.2.tar.gz
(4.6 kB
view hashes)