In this guide we’ll cover setting up the client, connecting to Almond Bot, and trying out tele-op.

Prerequisites

  • Python 3.10 or higher
  • pip (Python package manager)

Installation

First, install the Almond Bot client package:

pip install almond-py

Basic Setup

Create a new Python script and import the Almond Bot client:

from almond_bot_client import AlmondBotClient

# Initialize the client
client = AlmondBotClient()

Connecting to Almond Bot

Establish a connection to Almond Bot:

await client.connect()

Reading the status

Read the status of the robot:

status = await client.get_status()
print(status)