This SDK offers a high-level Python interface to Alteia APIs.
Installation
pip install alteia
*requires Python >= 3.6.1, pip >= 20.3
Basic usage
import alteia
sdk = alteia.SDK(user="YOUR_EMAIL_ADDRESS", password="YOUR_ALTEIA_PASSWORD")
projects = sdk.projects.search()
for project in projects:
print(project.name)
📕 Documentation
Contributing
Package installation:
poetry install
(Optional) To install pre-commit hooks (and detect problems before the pipelines):
pip install pre-commit
pre-commit install
pre-commit run --all-files
pre-commit autoupdate