Metadata-Version: 2.1
Name: pybullet-robot
Version: 0.1.0
Summary: 
Author: JustaGist
Author-email: mail@saifsidhik.page
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: numpy
Requires-Dist: pybullet (>3.1)
Requires-Dist: robot-descriptions (>=1.10.0)
Description-Content-Type: text/markdown

# PyBullet Robot

[![PyPI version](https://badge.fury.io/py/pybullet-robot.svg)](https://badge.fury.io/py/pybullet-robot)

This package provides:
1. A generel Python interface class for robot simulations using [PyBullet](https://www.pybullet.org). Python API class to control and monitor the robot in the simulation.
2. A pybullet inverse kinematics interface that can be used for getting joint position values when end-effector/link targets are provided. Supports multi-end-effector targets and floating-base robots.


## Installation

# From pypi

`pip install pybullet_robot`

# From source

```bash
git clone -b main https://github.com/justagist/pybullet_robot
cd pybullet_robot 
pip install .
```

## Usage

<TODO>

