Python 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.

Aquarium Python API

It's compatible with Python 2.7+ et 3.4+

Quickstart

Install the package

python -m pip install aquarium-python-api

More details in the installation section

Use the package

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()