{"library":"standardbots","title":"Standard Bots RO1 Robotics API","type":"library","description":"Python client for interacting with Standard Bots RO1 robotic arms. Provides high-level controls for movement, gripper actions, and system management. Version 2.x uses a modern async API; breaking changes from 1.x include removal of synchronous methods and renamed endpoints.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install standardbots"],"cli":null},"imports":["from standardbots import StandardBot","from standardbots.exceptions import RobotConnectionError"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":"https://standardbots.com","github":null,"docs":null,"changelog":null,"pypi":"https://pypi.org/project/standardbots/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"import asyncio\nfrom standardbots import StandardBot\n\nasync def main():\n    api_key = os.environ.get('STANDARDBOT_API_KEY', '')\n    robot = StandardBot(api_key=api_key, robot_id='your-robot-id')\n    await robot.connect()\n    await robot.move_to(x=0.3, y=0.0, z=0.4)\n    await robot.gripper.open()\n    await robot.disconnect()\n\nasyncio.run(main())","lang":"python","description":"Async quickstart: connect, move, grip, disconnect.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}