IndyKite Python SDK - REST clients for the IndyKite platform APIs
Project description
IndyKite Python SDK
Python clients for the IndyKite platform REST APIs: the Identity Knowledge Graph (IKG), KBAC authorization (AuthZEN), ContX IQ knowledge queries, data capture, entity matching, and platform configuration.
- OpenAPI reference: https://openapi.indykite.com
- Developer guides: https://developer.indykite.com
Requirements
- Python 3.14+
Installation
pip install indykite-sdk-python
Credentials
The SDK uses the two standard IndyKite credential kinds, obtained from the IndyKite Hub (or created via the Config API):
| Credential | Used by | What it is | Environment variables |
|---|---|---|---|
| Application Agent | all data-plane clients (capture, authzen, ciq, data schema, entity matching) | the raw credential token itself (opaque string, sent as X-IK-ClientKey) |
INDYKITE_APPLICATION_CREDENTIALS (the token) or INDYKITE_APPLICATION_CREDENTIALS_FILE (file with the token) |
| Service Account | ConfigClient |
a JSON artifact (serviceAccountId, pre-issued token, private key), sent as Authorization: Bearer |
INDYKITE_SERVICE_ACCOUNT_CREDENTIALS (inline JSON) or INDYKITE_SERVICE_ACCOUNT_CREDENTIALS_FILE (path) |
export INDYKITE_APPLICATION_CREDENTIALS="ik1_..." # the app agent credential token, as issued
export INDYKITE_SERVICE_ACCOUNT_CREDENTIALS_FILE=/path/to/service-account-credentials.json
Credentials can also be passed explicitly:
from indykite_sdk import CaptureClient, ConfigClient, Credentials
capture = CaptureClient("ik1_...") # data-plane clients take the raw token
config = ConfigClient(Credentials.from_file("service-account-credentials.json"))
The service-account JSON's pre-issued token is used while valid; when it
expires the SDK self-signs a fresh JWT from the credential's private key
(privateKeyJWK or PKCS#8). The app-agent token is never a JWT the SDK mints —
it is sent exactly as issued.
Regions and environments
Production defaults to https://eu.api.indykite.com; pass region="us" for
the US region, or point base_url= / INDYKITE_BASE_URL at another
environment (e.g. https://api.dev.indykite.xyz).
Quickstart
Authorization decisions (AuthZEN)
from indykite_sdk import AuthZENClient
with AuthZENClient() as client:
result = client.evaluation(("Person", "ada"), "CAN_DRIVE", ("Car", "kitt"))
print(result.decision) # True / False
# Which cars can ada drive?
cars = client.search_resource(("Person", "ada"), "CAN_DRIVE", "Car")
print([car.id for car in cars.results])
Capture graph data
from indykite_sdk import CaptureClient
with CaptureClient() as client:
client.upsert_nodes([
{
"external_id": "ada",
"type": "Person",
"is_identity": True,
"properties": [{"type": "email", "value": "ada@example.com"}],
},
{"external_id": "kitt", "type": "Car"},
])
client.upsert_relationships([
{
"type": "OWNS",
"source": {"external_id": "ada", "type": "Person"},
"target": {"external_id": "kitt", "type": "Car"},
},
])
Read the graph with a knowledge query (ContX IQ)
from indykite_sdk import CIQClient
with CIQClient() as client:
for record in client.execute_iter("gid:my-knowledge-query-id", input_params={"personId": "ada"}):
print(record.nodes)
Manage platform configuration
from indykite_sdk import ConfigClient
with ConfigClient() as config:
organization = config.read_current_organization()
project = config.create_project("my-project", organization.id, region="europe-west1")
app = config.create_application("my-app", project.id)
agent = config.create_application_agent("my-agent", app.id, ["Authorization", "Capture", "ContXIQ"])
credential = config.create_application_agent_credential(agent.id)
agent_credentials = credential.as_credentials() # shown once - store it securely
Updates and deletes are guarded by etags (If-Match): read the resource, then
pass its .etag:
app = config.read_application(app_id)
config.update_application(app_id, etag=app.etag, display_name="Renamed")
Async
Every client has an async twin with identical methods:
from indykite_sdk import AsyncAuthZENClient
async with AsyncAuthZENClient() as client:
result = await client.evaluation(("Person", "ada"), "CAN_DRIVE", ("Car", "kitt"))
Error handling
The SDK always raises typed exceptions — no method returns None on failure:
from indykite_sdk import AuthZENClient, AuthenticationError, IndyKiteError
try:
with AuthZENClient() as client:
decision = client.evaluation(("Person", "ada"), "CAN_DRIVE", ("Car", "kitt"))
except AuthenticationError as error:
print(error) # includes method, URL, status, and an actionable hint
except IndyKiteError as error:
print(f"SDK call failed: {error}")
Exceptions include BadRequestError (400), AuthenticationError (401),
PermissionDeniedError (403), NotFoundError (404), ETagMismatchError
(412), RateLimitError (429), InternalServerError (5xx),
RequestValidationError (client-side validation), and
IndyKiteConnectionError (network).
Idempotent requests (GET/PUT/DELETE) are retried automatically on 429/502/503/504
with exponential backoff; tune or disable via retries=RetryConfig(...) / retries=None.
Examples
Runnable scripts for every client live in examples/.
Development
pipenv install --dev
pipenv run pytest # unit tests (mocked, no credentials needed)
pipenv run pytest -m integration # live tests (needs credentials, see tests/integration/conftest.py)
pre-commit run --all-files
Support
- Issues: https://github.com/indykite/indykite-sdk-python/issues
- Vulnerability reports: see responsible_disclosure.md
Licensed under the Apache License 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file indykite_sdk_python-2.0.0.tar.gz.
File metadata
- Download URL: indykite_sdk_python-2.0.0.tar.gz
- Upload date:
- Size: 46.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
643d5a6dc9a06a0b7464dcc7b90f0136bf046a140a64d26376e74fe80c7cf8c8
|
|
| MD5 |
d2013370bb4ef304cdfbd258c2b47d34
|
|
| BLAKE2b-256 |
475f4870a01463fa9512766646f27af49d91761ed2e714d2eb79576e97de1395
|
File details
Details for the file indykite_sdk_python-2.0.0-py3-none-any.whl.
File metadata
- Download URL: indykite_sdk_python-2.0.0-py3-none-any.whl
- Upload date:
- Size: 62.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f87b874ec14b425d8b8e59b328cf77be13c739241b2998991895da112e82ad6f
|
|
| MD5 |
9d76163a15cbb0f231cec65dd12a416c
|
|
| BLAKE2b-256 |
c8c7b4f0c12ca8030aa448a3be80881401aebfa9c74ae467f29c4ae51f15acad
|