Skip to main content

Python SDK

kloakd-sdk for Python

1 min read


Install

pip install kloakd-sdk

Python 3.10+ | 88/88 tests | 87% coverage | httpx transport

Client

from kloakd import Kloakd, AsyncKloakd

client = Kloakd(
    api_key="sk-live-...",
    organization_id="your-org-uuid",
    timeout=30.0,
    max_retries=3,
)

Modules

client.evadr
client.webgrph
client.skanyr
client.nexus
client.parlyr
client.fetchyr
client.kolektr

Async

import asyncio
from kloakd import AsyncKloakd

async def main():
    async with AsyncKloakd(api_key="...", organization_id="...") as client:
        page = await client.evadr.fetch("https://example.com")
        print(page.artifact_id)

asyncio.run(main())
Was this page helpful?