Skip to main content

Python

The recommended way to integrate with IGNOS APIs is to use the official API client which is available on pypi.

Installation​

Install the official python package using the following command:

pip install ignos-api-client

Usage​

from ignos.api.client import IgnosPortal
from azure.identity import ClientSecretCredential

client = IgnosPortal(base_url="url", credential=ClientSecretCredential(tenant_id="tenant_id", client_id="client_id", client_secret="client_secret"), credential_scopes=["scopes"])