Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 476 Bytes

File metadata and controls

29 lines (21 loc) · 476 Bytes

Gabber Python SDK

Python client for Gabber.

Install

pip install gabber-client
# or
uv pip install gabber-client

Quickstart

import asyncio
from gabber import Engine

async def main():
    engine = Engine()
    await engine.connect(url="your-gabber-url", token="your-token")
    sub = await engine.subscribe_to_node(output_node_id="node-id")
    async for out in sub:
        print(out)

asyncio.run(main())

See examples in the main repo.