This SDK offers a high-level Python interface to Delair.ai APIs.
This repo is replaced by alteia-python-sdk.
python-delairstack
is now deprecated, and you should consinder to upgrade to the alteia
package.
Refer to the documentation for installation and usage instructions.
pip install python-delairstack
*requires Python >= 3.4
from delairstack import DelairStackSDK
sdk = DelairStackSDK(user="YOUR_EMAIL_ADDRESS",
password="YOUR_PASSWORD_ON_DELAIR.AI")
projects = sdk.projects.search(name='*')
for project in projects:
print(project.name)
# My awesome project