awaBerry Agentic API Python client — library documentation, pip install instructions, and examples for integrating device automation into Python scripts and applications.
This client allows you to interact with the awaBerry Agentic API from Python. See below for prerequisites, setup instructions, and usage examples.
pip install requests)def start_device_connection_websocket(session_token, deviceuuid): ...result = start_device_connection_websocket(session_token, deviceuuid)
print(result)
def get_websocket(session_token, deviceuuid): ...ws = get_websocket(session_token, deviceuuid)
ws.send("your message")
ws.close()
To get the latest awaBerry API client implementations, follow these steps:
git clone https://github.com/awaberry/mcp_server_awaberry.git
apiclients folder:cd mcp_server_awaberry/apiclients
This will give you access to all client implementations and tests for Java, Python, TypeScript, and Node.js.
Back to API Clients Overview