Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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.