Installation
See how to install the package.
We created a python package to interact with the API.
You have access to the low level API endpoints but also some dedicated methods for an easier onboarding.
It's compatible with Python 2.7+ et 3.4+
python -m pip install aquarium-python-api
More details in the installation section
from aquarium import Aquarium
aq=Aquarium('https://studio.aquarium.app')
aq.connect(AQ_USER, AQ_PASSWORD)
me=aq.get_current_user()
my_tasks=me.get_tasks()
projects=aq.project.get_all()