Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.04 KB

File metadata and controls

46 lines (32 loc) · 1.04 KB

agentcube-python

Python SDK for AgentCube — write apps that talk to the cube firmware (draw, scenes, feed helpers, later OTA/version check).

Part of CubeFW.

Status: scaffold. Core client will grow from the prototype in agentcube-sim.

Install (later)

pip install agentcube
# or editable:
pip install -e .

Planned usage

from agentcube import Cube, Color

cube = Cube("192.168.1.97")   # or sim: 127.0.0.1:8765
cube.ping()
cube.show_message(["Hello", "AgentCube"], colors=[Color.CYAN, Color.WHITE])

Layout

agentcube-python/
  README.md
  pyproject.toml
  agentcube/           # package
  examples/
  tests/

Related

License

MIT