--- id: robot-descriptions version: "3.1.0" license: unclear license_treatment: permissive maintenance: active --- # robot_descriptions — Import open source robot description as Python modules. License: permissive · Maintenance: active · Downloads: 107.6K/mo ## What it is and what it does robot_descriptions is a Python library that provides a unified interface to import open-source robot descriptions as Python modules. When you import a description for the first time, it automatically downloads and caches the files locally for future use. The library wraps descriptions in multiple formats (URDF and MJCF) and exposes them through loader functions tailored to popular robotics simulation and analysis software. The package is designed for roboticists and simulation engineers who need to work with standardized robot models across different tools. Instead of manually managing robot description files and format conversions, you import a description by name and get back an object ready to use in your chosen robotics software—whether that's MuJoCo for physics simulation, Pinocchio for dynamics computation, or PyBullet for interactive visualization. The caching mechanism means subsequent imports are instant. Use it for: - Load a robot arm description into Pinocchio to compute inverse kinematics or dynamics. - Fetch and cache a quadruped model in MuJoCo for physics-based simulation and control experiments. - Import a humanoid description into PyBullet for reinforcement learning training. - Visualize a mobile manipulator in RoboMeshCat or MeshCat without manually downloading files. - Access standardized robot descriptions from the command line using the CLI tool for quick inspection. - Render Xacro-based descriptions to URDF automatically when loading robot models. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Downloads and caches open-source robot descriptions (URDF and MJCF formats) as importable Python modules, with loaders for MuJoCo, Pinocchio, iDynTree, PyBullet, RoboMeshCat, and yourdfpy. Yes. The package is actively maintained, has low install friction, carries no known vulnerabilities, and solves a real problem for robotics work—centralizing access to open-source robot descriptions across multiple simulation tools. It's particularly valuable if you work with multiple robotics frameworks or need reproducible model loading in scripts and experiments. ## Install pip install robot-descriptions uv add robot-descriptions poetry add robot-descriptions ## Installing robot_descriptions Before you install: Low install friction with only two runtime dependencies (GitPython and tqdm). Package is actively maintained with a recent release (22 days old) and a stable codebase (807 stars, last commit 2026-08-04). License in practice: Permissive license treatment means you can use this package freely in commercial and private projects without restrictive obligations, though individual robot descriptions may have their own licenses. Quickstart: pip install robot_descriptions from robot_descriptions.loaders.pinocchio import load_robot_description robot = load_robot_description("upkie_description") Requires Python 3.10 or later. The robotics software you want to load into (Pinocchio, MuJoCo, etc.) must be installed separately. Verify before relying: - How many robot descriptions are currently available in the Awesome Robot Descriptions collection. - Whether Xacro rendering (mentioned for some descriptions) requires additional system dependencies. - Performance characteristics when caching large robot description files. ## Package facts - License: not declared (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 107.6K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags robot description loader, urdf mjcf python import, robot simulation models, pinocchio mujoco robot loader, robot description cache, open source robot models, robot kinematics description, robotics, simulation, urdf-mjcf [View on SkillFed](https://skillfed.io/packages/robot-descriptions) · [View on PyPI](https://pypi.org/project/robot-descriptions/)