Skip to content

Getting started

This is the documentation of the Python SDK for Isahit Lab.

Learn more about isahit here.

Installation

Install the client

pip install isahitlab

Basic usage

  • Create your credentials in your lab account

Info

See isahit lab documentation to know how to create your credentials

  • Add the access id and the secret key to your environment variables
export ISAHIT_LAB_API_ACCESS_ID='<your_access_id>'
export ISAHIT_LAB_API_SECRET_KEY='<your_secret_key>'
  • Instanciate the client
from isahitlab.client import IsahitLab

lab = IsahitLab()

Info

You can also pass your credentials as arguments during IsahitLab initialization:

from isahitlab.client import IsahitLab

lab = IsahitLab(
    access_id="<your_access_id>",
    secret_key="<your_secret_key>",
)

Try it!

lab.project_configuration(project_id=<your_project_id>)