roboticstoolbox-python


Nameroboticstoolbox-python JSON
Version 1.1.0 PyPI version JSON
download
home_page
SummaryA Python library for robotics education and research
upload_time2023-05-14 07:53:04
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License Copyright (c) 2020 jhavl Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords python robotics robotics-toolbox kinematics dynamics motion-planning trajectory-generation jacobian hessian control simulation robot-manipulator mobile-robot
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Robotics Toolbox for Python

[![A Python Robotics Package](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/py_collection.min.svg)](https://github.com/petercorke/robotics-toolbox-python)
[![Powered by Spatial Maths](https://raw.githubusercontent.com/petercorke/spatialmath-python/master/.github/svg/sm_powered.min.svg)](https://github.com/petercorke/spatialmath-python)
[![QUT Centre for Robotics Open Source](https://github.com/qcr/qcr.github.io/raw/master/misc/badge.svg)](https://qcr.github.io)

[![PyPI version](https://badge.fury.io/py/roboticstoolbox-python.svg)](https://badge.fury.io/py/roboticstoolbox-python)
[![Anaconda version](https://anaconda.org/conda-forge/roboticstoolbox-python/badges/version.svg)](https://anaconda.org/conda-forge/roboticstoolbox-python)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/roboticstoolbox-python.svg)

[![Build Status](https://github.com/petercorke/robotics-toolbox-python/workflows/Test/badge.svg?branch=master)](https://github.com/petercorke/robotics-toolbox-python/actions?query=workflow%3ATest)
[![Coverage](https://codecov.io/gh/petercorke/robotics-toolbox-python/branch/master/graph/badge.svg)](https://codecov.io/gh/petercorke/robotics-toolbox-python)
[![PyPI - Downloads](https://img.shields.io/pypi/dw/roboticstoolbox-python)](https://pypistats.org/packages/roboticstoolbox-python)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

<table style="border:0px">
<tr style="border:0px">
<td style="border:0px">
<img src="https://github.com/petercorke/robotics-toolbox-python/raw/master/docs/figs/RobToolBox_RoundLogoB.png" width="200"></td>
<td style="border:0px">
A Python implementation of the <a href="https://github.com/petercorke/robotics-toolbox-matlab">Robotics Toolbox for MATLAB<sup>&reg;</sup></a>
<ul>
<li><a href="https://github.com/petercorke/robotics-toolbox-python">GitHub repository </a></li>
<li><a href="https://petercorke.github.io/robotics-toolbox-python">Documentation</a></li>
<li><a href="#6">ICRA Paper</a></li>
<li><a href="https://github.com/petercorke/robotics-toolbox-python/wiki">Wiki (examples and details)</a></li>
</ul>
</td>
</tr>
</table>

<!-- <br> -->

## Contents

- [Synopsis](#1)
- [Getting going](#2)
- [Tutorials](#3)
- [Code Examples](#4)
- [Toolbox Research Applications](#5)
- [Toolbox ICRA Paper and Citation Info](#6)
- [Using the Toolbox in your Open Source Code?](#7)
- [Common Issues and Solutions](#8)

<br>

<a id='1'></a>

## Synopsis

This toolbox brings robotics-specific functionality to Python, and leverages
Python's advantages of portability, ubiquity and support, and the capability of
the open-source ecosystem for linear algebra (numpy, scipy), graphics
(matplotlib, three.js, WebGL), interactive development (jupyter, jupyterlab,
mybinder.org), and documentation (sphinx).

The Toolbox provides tools for representing the kinematics and dynamics of
serial-link manipulators - you can easily create your own in Denavit-Hartenberg
form, import a URDF file, or use over 30 supplied models for well-known
contemporary robots from Franka-Emika, Kinova, Universal Robotics, Rethink as
well as classical robots such as the Puma 560 and the Stanford arm.

The Toolbox contains fast implementations of kinematic operations. The forward
kinematics and the manipulator Jacobian can be computed in less than 1 microsecond
while numerical inverse kinematics can be solved in as little as 4 microseconds.

The toolbox also supports mobile robots with functions for robot motion models
(unicycle, bicycle), path planning algorithms (bug, distance transform, D\*,
PRM), kinodynamic planning (lattice, RRT), localization (EKF, particle filter),
map building (EKF) and simultaneous localization and mapping (EKF).

The Toolbox provides:

- code that is mature and provides a point of comparison for other
  implementations of the same algorithms;
- routines which are generally written in a straightforward manner which
  allows for easy understanding, perhaps at the expense of computational
  efficiency;
- source code which can be read for learning and teaching;
- backward compatability with the Robotics Toolbox for MATLAB

The Toolbox leverages the [Spatial Maths Toolbox for Python](https://github.com/petercorke/spatialmath-python) to
provide support for data types such as SO(n) and SE(n) matrices, quaternions, twists and spatial vectors.

<br>

<a id='2'></a>

## Getting going

You will need Python >= 3.6

### Using pip

Install a snapshot from PyPI

```shell script
pip3 install roboticstoolbox-python
```

Available options are:

- `collision` install collision checking with [pybullet](https://pybullet.org)

Put the options in a comma separated list like

```shell script
pip3 install roboticstoolbox-python[optionlist]
```

[Swift](https://github.com/jhavl/swift), a web-based visualizer, is
installed as part of Robotics Toolbox.

### From GitHub

To install the bleeding-edge version from GitHub

```shell script
git clone https://github.com/petercorke/robotics-toolbox-python.git
cd robotics-toolbox-python
pip3 install -e .
```

<br>

<a id='3'></a>

## Tutorials

<table style="border:0px">
<tr style="border:0px">
<td style="border:0px"><a href="https://bit.ly/3ak5GDi"><img src="https://github.com/jhavl/dkt/raw/main/img/article1.png" width="400"></a></td>
<td style="border:0px"><a href="https://bit.ly/3ak5GDi"><img src="https://github.com/jhavl/dkt/raw/main/img/article2.png" width="400"></a></td>
<td style="border:0px">
Do you want to learn about manipulator kinematics, differential kinematics, inverse-kinematics and motion control? Have a look at our
<a href="https://bit.ly/3ak5GDi">tutorial</a>.
This tutorial comes with two articles to cover the theory and 12 Jupyter Notebooks providing full code implementations and examples. Most of the Notebooks are also Google Colab compatible allowing them to run online.
</td>
</tr>
</table>

<br>

<a id='4'></a>

## Code Examples

We will load a model of the Franka-Emika Panda robot defined by a URDF file

```python
import roboticstoolbox as rtb
robot = rtb.models.Panda()
print(robot)

	ERobot: panda (by Franka Emika), 7 joints (RRRRRRR), 1 gripper, geometry, collision
	┌─────┬──────────────┬───────┬─────────────┬────────────────────────────────────────────────┐
	│link │     link     │ joint │   parent    │              ETS: parent to link               │
	├─────┼──────────────┼───────┼─────────────┼────────────────────────────────────────────────┤
	│   0 │ panda_link0  │       │ BASE        │                                                │
	│   1 │ panda_link1  │     0 │ panda_link0 │ SE3(0, 0, 0.333) ⊕ Rz(q0)                      │
	│   2 │ panda_link2  │     1 │ panda_link1 │ SE3(-90°, -0°, 0°) ⊕ Rz(q1)                    │
	│   3 │ panda_link3  │     2 │ panda_link2 │ SE3(0, -0.316, 0; 90°, -0°, 0°) ⊕ Rz(q2)       │
	│   4 │ panda_link4  │     3 │ panda_link3 │ SE3(0.0825, 0, 0; 90°, -0°, 0°) ⊕ Rz(q3)       │
	│   5 │ panda_link5  │     4 │ panda_link4 │ SE3(-0.0825, 0.384, 0; -90°, -0°, 0°) ⊕ Rz(q4) │
	│   6 │ panda_link6  │     5 │ panda_link5 │ SE3(90°, -0°, 0°) ⊕ Rz(q5)                     │
	│   7 │ panda_link7  │     6 │ panda_link6 │ SE3(0.088, 0, 0; 90°, -0°, 0°) ⊕ Rz(q6)        │
	│   8 │ @panda_link8 │       │ panda_link7 │ SE3(0, 0, 0.107)                               │
	└─────┴──────────────┴───────┴─────────────┴────────────────────────────────────────────────┘

	┌─────┬─────┬────────┬─────┬───────┬─────┬───────┬──────┐
	│name │ q0  │ q1     │ q2  │ q3    │ q4  │ q5    │ q6   │
	├─────┼─────┼────────┼─────┼───────┼─────┼───────┼──────┤
	│  qr │  0° │ -17.2° │  0° │ -126° │  0° │  115° │  45° │
	│  qz │  0° │  0°    │  0° │  0°   │  0° │  0°   │  0°  │
	└─────┴─────┴────────┴─────┴───────┴─────┴───────┴──────┘
```

The symbol `@` indicates the link as an end-effector, a leaf node in the rigid-body
tree (Python prompts are not shown to make it easy to copy+paste the code, console output is indented).
We will compute the forward kinematics next

```
Te = robot.fkine(robot.qr)  # forward kinematics
print(Te)

	0.995     0         0.09983   0.484
	0        -1         0         0
	0.09983   0        -0.995     0.4126
	0         0         0         1
```

We can solve inverse kinematics very easily. We first choose an SE(3) pose
defined in terms of position and orientation (end-effector z-axis down (A=-Z) and finger
orientation parallel to y-axis (O=+Y)).

```python
from spatialmath import SE3

Tep = SE3.Trans(0.6, -0.3, 0.1) * SE3.OA([0, 1, 0], [0, 0, -1])
sol = robot.ik_lm_chan(Tep)         # solve IK
print(sol)

	(array([ 0.20592815,  0.86609481, -0.79473206, -1.68254794,  0.74872915,
			2.21764746, -0.10255606]), 1, 114, 7, 2.890164057230228e-07)

q_pickup = sol[0]
print(robot.fkine(q_pickup))    # FK shows that desired end-effector pose was achieved

	 1         -8.913e-05  -0.0003334  0.5996
	-8.929e-05 -1          -0.0004912 -0.2998
	-0.0003334  0.0004912  -1          0.1001
	 0          0           0          1
```

We can animate a path from the ready pose `qr` configuration to this pickup configuration

```python
qt = rtb.jtraj(robot.qr, q_pickup, 50)
robot.plot(qt.q, backend='pyplot', movie='panda1.gif')
```

<p align="center">
	<img src="./docs/figs/panda1.gif">
</p>

where we have specified the matplotlib `pyplot` backend. Blue arrows show the joint axes and the coloured frame shows the end-effector pose.

We can also plot the trajectory in the Swift simulator (a browser-based 3d-simulation environment built to work with the Toolbox)

```python
robot.plot(qt.q)
```

<p align="center">
	<img src="./docs/figs/panda2.gif">
</p>

We can also experiment with velocity controllers in Swift. Here is a resolved-rate motion control example

```python
import swift
import roboticstoolbox as rp
import spatialmath as sm
import numpy as np

env = swift.Swift()
env.launch(realtime=True)

panda = rp.models.Panda()
panda.q = panda.qr

Tep = panda.fkine(panda.q) * sm.SE3.Trans(0.2, 0.2, 0.45)

arrived = False
env.add(panda)

dt = 0.05

while not arrived:

    v, arrived = rp.p_servo(panda.fkine(panda.q), Tep, 1)
    panda.qd = np.linalg.pinv(panda.jacobe(panda.q)) @ v
    env.step(dt)

# Uncomment to stop the browser tab from closing
# env.hold()
```

<p align="center">
	<img src="./docs/figs/panda3.gif">
</p>

### Run some examples

The [`notebooks`](https://github.com/petercorke/robotics-toolbox-python/tree/master/notebooks) folder contains some tutorial Jupyter notebooks which you can browse on GitHub. Additionally, have a look in the [`examples`](https://github.com/petercorke/robotics-toolbox-python/tree/master/roboticstoolbox/examples) folder for many ready to run examples.

<br>

<a id='5'></a>

## Toolbox Research Applications

The toolbox is incredibly useful for developing and prototyping algorithms for research, thanks to the exhaustive set of well documented and mature robotic functions exposed through clean and painless APIs. Additionally, the ease at which a user can visualize their algorithm supports a rapid prototyping paradigm.

### Publication List

J. Haviland, N. Sünderhauf and P. Corke, "**A Holistic Approach to Reactive Mobile Manipulation**," in _IEEE Robotics and Automation Letters_, doi: 10.1109/LRA.2022.3146554. In the video, the robot is controlled using the Robotics toolbox for Python and features a recording from the [Swift](https://github.com/jhavl/swift) Simulator.

[[Arxiv Paper](https://arxiv.org/abs/2109.04749)] [[IEEE Xplore](https://ieeexplore.ieee.org/abstract/document/9695298)] [[Project Website](https://jhavl.github.io/holistic/)] [[Video](https://youtu.be/-DXBQPeLIV4)] [[Code Example](https://github.com/petercorke/robotics-toolbox-python/blob/master/roboticstoolbox/examples/holistic_mm_non_holonomic.py)]

<p>
  <a href="https://youtu.be/-DXBQPeLIV4">
    <img src="https://github.com/petercorke/robotics-toolbox-python/raw/master/docs/figs/holistic_youtube.png" width="560">
  </a>
</p>

J. Haviland and P. Corke, "**NEO: A Novel Expeditious Optimisation Algorithm for Reactive Motion Control of Manipulators**," in _IEEE Robotics and Automation Letters_, doi: 10.1109/LRA.2021.3056060. In the video, the robot is controlled using the Robotics toolbox for Python and features a recording from the [Swift](https://github.com/jhavl/swift) Simulator.

[[Arxiv Paper](https://arxiv.org/abs/2010.08686)] [[IEEE Xplore](https://ieeexplore.ieee.org/document/9343718)] [[Project Website](https://jhavl.github.io/neo/)] [[Video](https://youtu.be/jSLPJBr8QTY)] [[Code Example](https://github.com/petercorke/robotics-toolbox-python/blob/master/roboticstoolbox/examples/neo.py)]

<p>
  <a href="https://youtu.be/jSLPJBr8QTY">
    <img src="https://github.com/petercorke/robotics-toolbox-python/raw/master/docs/figs/neo_youtube.png" width="560">
  </a>
</p>

**A Purely-Reactive Manipulability-Maximising Motion Controller**, J. Haviland and P. Corke. In the video, the robot is controlled using the Robotics toolbox for Python.

[[Paper](https://arxiv.org/abs/2002.11901)] [[Project Website](https://jhavl.github.io/mmc/)] [[Video](https://youtu.be/Vu_rcPlaADI)] [[Code Example](https://github.com/petercorke/robotics-toolbox-python/blob/master/roboticstoolbox/examples/mmc.py)]

<p>
  <a href="https://youtu.be/Vu_rcPlaADI">
    <img src="https://github.com/petercorke/robotics-toolbox-python/raw/master/docs/figs/mmc_youtube.png" width="560">
  </a>
</p>

<br>

<br>

<a id='6'></a>

## Toolbox ICRA Paper and Citation Info

Check out our ICRA 2021 paper on [IEEE Xplore](https://ieeexplore.ieee.org/document/9561366) or get the PDF from [Peter's website](https://bit.ly/3ChcyNp).

If the toolbox helped you in your research, please cite

```
@inproceedings{rtb,
  title={Not your grandmother’s toolbox--the Robotics Toolbox reinvented for Python},
  author={Corke, Peter and Haviland, Jesse},
  booktitle={2021 IEEE International Conference on Robotics and Automation (ICRA)},
  pages={11357--11363},
  year={2021},
  organization={IEEE}
}
```

<br>

<a id='7'></a>

## Using the Toolbox in your Open Source Code?

If you are using the Toolbox in your open source code, feel free to add our badge to your readme!

For the powered by robotics toolbox badge

[![Powered by the Robotics Toolbox](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/rtb_powered.min.svg)](https://github.com/petercorke/robotics-toolbox-python)

copy the following

```
[![Powered by the Robotics Toolbox](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/rtb_powered.min.svg)](https://github.com/petercorke/robotics-toolbox-python)
```

For the powered by python robotics badge

[![Powered by Python Robotics](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/pr_powered.min.svg)](https://github.com/petercorke/robotics-toolbox-python)

copy the following

```
[![Powered by Python Robotics](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/pr_powered.min.svg)](https://github.com/petercorke/robotics-toolbox-python)
```

<br>

<a id='8'></a>

## Common Issues and Solutions

See the common issues with fixes [here](https://github.com/petercorke/robotics-toolbox-python/wiki/Common-Issues).

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "roboticstoolbox-python",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "python,robotics,robotics-toolbox,kinematics,dynamics,motion-planning,trajectory-generation,jacobian,hessian,control,simulation,robot-manipulator,mobile-robot",
    "author": "",
    "author_email": "Jesse Haviland <j.haviland@qut.edu.au>, Peter Corke <rvc@petercorke.com>",
    "download_url": "https://files.pythonhosted.org/packages/04/99/c460df149faac36e0a4f4a47111ac23ae25154d0e29065747ea972e78920/roboticstoolbox-python-1.1.0.tar.gz",
    "platform": null,
    "description": "# Robotics Toolbox for Python\n\n[![A Python Robotics Package](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/py_collection.min.svg)](https://github.com/petercorke/robotics-toolbox-python)\n[![Powered by Spatial Maths](https://raw.githubusercontent.com/petercorke/spatialmath-python/master/.github/svg/sm_powered.min.svg)](https://github.com/petercorke/spatialmath-python)\n[![QUT Centre for Robotics Open Source](https://github.com/qcr/qcr.github.io/raw/master/misc/badge.svg)](https://qcr.github.io)\n\n[![PyPI version](https://badge.fury.io/py/roboticstoolbox-python.svg)](https://badge.fury.io/py/roboticstoolbox-python)\n[![Anaconda version](https://anaconda.org/conda-forge/roboticstoolbox-python/badges/version.svg)](https://anaconda.org/conda-forge/roboticstoolbox-python)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/roboticstoolbox-python.svg)\n\n[![Build Status](https://github.com/petercorke/robotics-toolbox-python/workflows/Test/badge.svg?branch=master)](https://github.com/petercorke/robotics-toolbox-python/actions?query=workflow%3ATest)\n[![Coverage](https://codecov.io/gh/petercorke/robotics-toolbox-python/branch/master/graph/badge.svg)](https://codecov.io/gh/petercorke/robotics-toolbox-python)\n[![PyPI - Downloads](https://img.shields.io/pypi/dw/roboticstoolbox-python)](https://pypistats.org/packages/roboticstoolbox-python)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n<table style=\"border:0px\">\n<tr style=\"border:0px\">\n<td style=\"border:0px\">\n<img src=\"https://github.com/petercorke/robotics-toolbox-python/raw/master/docs/figs/RobToolBox_RoundLogoB.png\" width=\"200\"></td>\n<td style=\"border:0px\">\nA Python implementation of the <a href=\"https://github.com/petercorke/robotics-toolbox-matlab\">Robotics Toolbox for MATLAB<sup>&reg;</sup></a>\n<ul>\n<li><a href=\"https://github.com/petercorke/robotics-toolbox-python\">GitHub repository </a></li>\n<li><a href=\"https://petercorke.github.io/robotics-toolbox-python\">Documentation</a></li>\n<li><a href=\"#6\">ICRA Paper</a></li>\n<li><a href=\"https://github.com/petercorke/robotics-toolbox-python/wiki\">Wiki (examples and details)</a></li>\n</ul>\n</td>\n</tr>\n</table>\n\n<!-- <br> -->\n\n## Contents\n\n- [Synopsis](#1)\n- [Getting going](#2)\n- [Tutorials](#3)\n- [Code Examples](#4)\n- [Toolbox Research Applications](#5)\n- [Toolbox ICRA Paper and Citation Info](#6)\n- [Using the Toolbox in your Open Source Code?](#7)\n- [Common Issues and Solutions](#8)\n\n<br>\n\n<a id='1'></a>\n\n## Synopsis\n\nThis toolbox brings robotics-specific functionality to Python, and leverages\nPython's advantages of portability, ubiquity and support, and the capability of\nthe open-source ecosystem for linear algebra (numpy, scipy), graphics\n(matplotlib, three.js, WebGL), interactive development (jupyter, jupyterlab,\nmybinder.org), and documentation (sphinx).\n\nThe Toolbox provides tools for representing the kinematics and dynamics of\nserial-link manipulators - you can easily create your own in Denavit-Hartenberg\nform, import a URDF file, or use over 30 supplied models for well-known\ncontemporary robots from Franka-Emika, Kinova, Universal Robotics, Rethink as\nwell as classical robots such as the Puma 560 and the Stanford arm.\n\nThe Toolbox contains fast implementations of kinematic operations. The forward\nkinematics and the manipulator Jacobian can be computed in less than 1 microsecond\nwhile numerical inverse kinematics can be solved in as little as 4 microseconds.\n\nThe toolbox also supports mobile robots with functions for robot motion models\n(unicycle, bicycle), path planning algorithms (bug, distance transform, D\\*,\nPRM), kinodynamic planning (lattice, RRT), localization (EKF, particle filter),\nmap building (EKF) and simultaneous localization and mapping (EKF).\n\nThe Toolbox provides:\n\n- code that is mature and provides a point of comparison for other\n  implementations of the same algorithms;\n- routines which are generally written in a straightforward manner which\n  allows for easy understanding, perhaps at the expense of computational\n  efficiency;\n- source code which can be read for learning and teaching;\n- backward compatability with the Robotics Toolbox for MATLAB\n\nThe Toolbox leverages the [Spatial Maths Toolbox for Python](https://github.com/petercorke/spatialmath-python) to\nprovide support for data types such as SO(n) and SE(n) matrices, quaternions, twists and spatial vectors.\n\n<br>\n\n<a id='2'></a>\n\n## Getting going\n\nYou will need Python >= 3.6\n\n### Using pip\n\nInstall a snapshot from PyPI\n\n```shell script\npip3 install roboticstoolbox-python\n```\n\nAvailable options are:\n\n- `collision` install collision checking with [pybullet](https://pybullet.org)\n\nPut the options in a comma separated list like\n\n```shell script\npip3 install roboticstoolbox-python[optionlist]\n```\n\n[Swift](https://github.com/jhavl/swift), a web-based visualizer, is\ninstalled as part of Robotics Toolbox.\n\n### From GitHub\n\nTo install the bleeding-edge version from GitHub\n\n```shell script\ngit clone https://github.com/petercorke/robotics-toolbox-python.git\ncd robotics-toolbox-python\npip3 install -e .\n```\n\n<br>\n\n<a id='3'></a>\n\n## Tutorials\n\n<table style=\"border:0px\">\n<tr style=\"border:0px\">\n<td style=\"border:0px\"><a href=\"https://bit.ly/3ak5GDi\"><img src=\"https://github.com/jhavl/dkt/raw/main/img/article1.png\" width=\"400\"></a></td>\n<td style=\"border:0px\"><a href=\"https://bit.ly/3ak5GDi\"><img src=\"https://github.com/jhavl/dkt/raw/main/img/article2.png\" width=\"400\"></a></td>\n<td style=\"border:0px\">\nDo you want to learn about manipulator kinematics, differential kinematics, inverse-kinematics and motion control? Have a look at our\n<a href=\"https://bit.ly/3ak5GDi\">tutorial</a>.\nThis tutorial comes with two articles to cover the theory and 12 Jupyter Notebooks providing full code implementations and examples. Most of the Notebooks are also Google Colab compatible allowing them to run online.\n</td>\n</tr>\n</table>\n\n<br>\n\n<a id='4'></a>\n\n## Code Examples\n\nWe will load a model of the Franka-Emika Panda robot defined by a URDF file\n\n```python\nimport roboticstoolbox as rtb\nrobot = rtb.models.Panda()\nprint(robot)\n\n\tERobot: panda (by Franka Emika), 7 joints (RRRRRRR), 1 gripper, geometry, collision\n\t\u250c\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\t\u2502link \u2502     link     \u2502 joint \u2502   parent    \u2502              ETS: parent to link               \u2502\n\t\u251c\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n\t\u2502   0 \u2502 panda_link0  \u2502       \u2502 BASE        \u2502                                                \u2502\n\t\u2502   1 \u2502 panda_link1  \u2502     0 \u2502 panda_link0 \u2502 SE3(0, 0, 0.333) \u2295 Rz(q0)                      \u2502\n\t\u2502   2 \u2502 panda_link2  \u2502     1 \u2502 panda_link1 \u2502 SE3(-90\u00b0, -0\u00b0, 0\u00b0) \u2295 Rz(q1)                    \u2502\n\t\u2502   3 \u2502 panda_link3  \u2502     2 \u2502 panda_link2 \u2502 SE3(0, -0.316, 0; 90\u00b0, -0\u00b0, 0\u00b0) \u2295 Rz(q2)       \u2502\n\t\u2502   4 \u2502 panda_link4  \u2502     3 \u2502 panda_link3 \u2502 SE3(0.0825, 0, 0; 90\u00b0, -0\u00b0, 0\u00b0) \u2295 Rz(q3)       \u2502\n\t\u2502   5 \u2502 panda_link5  \u2502     4 \u2502 panda_link4 \u2502 SE3(-0.0825, 0.384, 0; -90\u00b0, -0\u00b0, 0\u00b0) \u2295 Rz(q4) \u2502\n\t\u2502   6 \u2502 panda_link6  \u2502     5 \u2502 panda_link5 \u2502 SE3(90\u00b0, -0\u00b0, 0\u00b0) \u2295 Rz(q5)                     \u2502\n\t\u2502   7 \u2502 panda_link7  \u2502     6 \u2502 panda_link6 \u2502 SE3(0.088, 0, 0; 90\u00b0, -0\u00b0, 0\u00b0) \u2295 Rz(q6)        \u2502\n\t\u2502   8 \u2502 @panda_link8 \u2502       \u2502 panda_link7 \u2502 SE3(0, 0, 0.107)                               \u2502\n\t\u2514\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n\n\t\u250c\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\t\u2502name \u2502 q0  \u2502 q1     \u2502 q2  \u2502 q3    \u2502 q4  \u2502 q5    \u2502 q6   \u2502\n\t\u251c\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u253c\u2500\u2500\u2500\u2500\u2500\u2500\u2524\n\t\u2502  qr \u2502  0\u00b0 \u2502 -17.2\u00b0 \u2502  0\u00b0 \u2502 -126\u00b0 \u2502  0\u00b0 \u2502  115\u00b0 \u2502  45\u00b0 \u2502\n\t\u2502  qz \u2502  0\u00b0 \u2502  0\u00b0    \u2502  0\u00b0 \u2502  0\u00b0   \u2502  0\u00b0 \u2502  0\u00b0   \u2502  0\u00b0  \u2502\n\t\u2514\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n```\n\nThe symbol `@` indicates the link as an end-effector, a leaf node in the rigid-body\ntree (Python prompts are not shown to make it easy to copy+paste the code, console output is indented).\nWe will compute the forward kinematics next\n\n```\nTe = robot.fkine(robot.qr)  # forward kinematics\nprint(Te)\n\n\t0.995     0         0.09983   0.484\n\t0        -1         0         0\n\t0.09983   0        -0.995     0.4126\n\t0         0         0         1\n```\n\nWe can solve inverse kinematics very easily. We first choose an SE(3) pose\ndefined in terms of position and orientation (end-effector z-axis down (A=-Z) and finger\norientation parallel to y-axis (O=+Y)).\n\n```python\nfrom spatialmath import SE3\n\nTep = SE3.Trans(0.6, -0.3, 0.1) * SE3.OA([0, 1, 0], [0, 0, -1])\nsol = robot.ik_lm_chan(Tep)         # solve IK\nprint(sol)\n\n\t(array([ 0.20592815,  0.86609481, -0.79473206, -1.68254794,  0.74872915,\n\t\t\t2.21764746, -0.10255606]), 1, 114, 7, 2.890164057230228e-07)\n\nq_pickup = sol[0]\nprint(robot.fkine(q_pickup))    # FK shows that desired end-effector pose was achieved\n\n\t 1         -8.913e-05  -0.0003334  0.5996\n\t-8.929e-05 -1          -0.0004912 -0.2998\n\t-0.0003334  0.0004912  -1          0.1001\n\t 0          0           0          1\n```\n\nWe can animate a path from the ready pose `qr` configuration to this pickup configuration\n\n```python\nqt = rtb.jtraj(robot.qr, q_pickup, 50)\nrobot.plot(qt.q, backend='pyplot', movie='panda1.gif')\n```\n\n<p align=\"center\">\n\t<img src=\"./docs/figs/panda1.gif\">\n</p>\n\nwhere we have specified the matplotlib `pyplot` backend. Blue arrows show the joint axes and the coloured frame shows the end-effector pose.\n\nWe can also plot the trajectory in the Swift simulator (a browser-based 3d-simulation environment built to work with the Toolbox)\n\n```python\nrobot.plot(qt.q)\n```\n\n<p align=\"center\">\n\t<img src=\"./docs/figs/panda2.gif\">\n</p>\n\nWe can also experiment with velocity controllers in Swift. Here is a resolved-rate motion control example\n\n```python\nimport swift\nimport roboticstoolbox as rp\nimport spatialmath as sm\nimport numpy as np\n\nenv = swift.Swift()\nenv.launch(realtime=True)\n\npanda = rp.models.Panda()\npanda.q = panda.qr\n\nTep = panda.fkine(panda.q) * sm.SE3.Trans(0.2, 0.2, 0.45)\n\narrived = False\nenv.add(panda)\n\ndt = 0.05\n\nwhile not arrived:\n\n    v, arrived = rp.p_servo(panda.fkine(panda.q), Tep, 1)\n    panda.qd = np.linalg.pinv(panda.jacobe(panda.q)) @ v\n    env.step(dt)\n\n# Uncomment to stop the browser tab from closing\n# env.hold()\n```\n\n<p align=\"center\">\n\t<img src=\"./docs/figs/panda3.gif\">\n</p>\n\n### Run some examples\n\nThe [`notebooks`](https://github.com/petercorke/robotics-toolbox-python/tree/master/notebooks) folder contains some tutorial Jupyter notebooks which you can browse on GitHub. Additionally, have a look in the [`examples`](https://github.com/petercorke/robotics-toolbox-python/tree/master/roboticstoolbox/examples) folder for many ready to run examples.\n\n<br>\n\n<a id='5'></a>\n\n## Toolbox Research Applications\n\nThe toolbox is incredibly useful for developing and prototyping algorithms for research, thanks to the exhaustive set of well documented and mature robotic functions exposed through clean and painless APIs. Additionally, the ease at which a user can visualize their algorithm supports a rapid prototyping paradigm.\n\n### Publication List\n\nJ. Haviland, N. S\u00fcnderhauf and P. Corke, \"**A Holistic Approach to Reactive Mobile Manipulation**,\" in _IEEE Robotics and Automation Letters_, doi: 10.1109/LRA.2022.3146554. In the video, the robot is controlled using the Robotics toolbox for Python and features a recording from the [Swift](https://github.com/jhavl/swift) Simulator.\n\n[[Arxiv Paper](https://arxiv.org/abs/2109.04749)] [[IEEE Xplore](https://ieeexplore.ieee.org/abstract/document/9695298)] [[Project Website](https://jhavl.github.io/holistic/)] [[Video](https://youtu.be/-DXBQPeLIV4)] [[Code Example](https://github.com/petercorke/robotics-toolbox-python/blob/master/roboticstoolbox/examples/holistic_mm_non_holonomic.py)]\n\n<p>\n  <a href=\"https://youtu.be/-DXBQPeLIV4\">\n    <img src=\"https://github.com/petercorke/robotics-toolbox-python/raw/master/docs/figs/holistic_youtube.png\" width=\"560\">\n  </a>\n</p>\n\nJ. Haviland and P. Corke, \"**NEO: A Novel Expeditious Optimisation Algorithm for Reactive Motion Control of Manipulators**,\" in _IEEE Robotics and Automation Letters_, doi: 10.1109/LRA.2021.3056060. In the video, the robot is controlled using the Robotics toolbox for Python and features a recording from the [Swift](https://github.com/jhavl/swift) Simulator.\n\n[[Arxiv Paper](https://arxiv.org/abs/2010.08686)] [[IEEE Xplore](https://ieeexplore.ieee.org/document/9343718)] [[Project Website](https://jhavl.github.io/neo/)] [[Video](https://youtu.be/jSLPJBr8QTY)] [[Code Example](https://github.com/petercorke/robotics-toolbox-python/blob/master/roboticstoolbox/examples/neo.py)]\n\n<p>\n  <a href=\"https://youtu.be/jSLPJBr8QTY\">\n    <img src=\"https://github.com/petercorke/robotics-toolbox-python/raw/master/docs/figs/neo_youtube.png\" width=\"560\">\n  </a>\n</p>\n\n**A Purely-Reactive Manipulability-Maximising Motion Controller**, J. Haviland and P. Corke. In the video, the robot is controlled using the Robotics toolbox for Python.\n\n[[Paper](https://arxiv.org/abs/2002.11901)] [[Project Website](https://jhavl.github.io/mmc/)] [[Video](https://youtu.be/Vu_rcPlaADI)] [[Code Example](https://github.com/petercorke/robotics-toolbox-python/blob/master/roboticstoolbox/examples/mmc.py)]\n\n<p>\n  <a href=\"https://youtu.be/Vu_rcPlaADI\">\n    <img src=\"https://github.com/petercorke/robotics-toolbox-python/raw/master/docs/figs/mmc_youtube.png\" width=\"560\">\n  </a>\n</p>\n\n<br>\n\n<br>\n\n<a id='6'></a>\n\n## Toolbox ICRA Paper and Citation Info\n\nCheck out our ICRA 2021 paper on [IEEE Xplore](https://ieeexplore.ieee.org/document/9561366) or get the PDF from [Peter's website](https://bit.ly/3ChcyNp).\n\nIf the toolbox helped you in your research, please cite\n\n```\n@inproceedings{rtb,\n  title={Not your grandmother\u2019s toolbox--the Robotics Toolbox reinvented for Python},\n  author={Corke, Peter and Haviland, Jesse},\n  booktitle={2021 IEEE International Conference on Robotics and Automation (ICRA)},\n  pages={11357--11363},\n  year={2021},\n  organization={IEEE}\n}\n```\n\n<br>\n\n<a id='7'></a>\n\n## Using the Toolbox in your Open Source Code?\n\nIf you are using the Toolbox in your open source code, feel free to add our badge to your readme!\n\nFor the powered by robotics toolbox badge\n\n[![Powered by the Robotics Toolbox](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/rtb_powered.min.svg)](https://github.com/petercorke/robotics-toolbox-python)\n\ncopy the following\n\n```\n[![Powered by the Robotics Toolbox](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/rtb_powered.min.svg)](https://github.com/petercorke/robotics-toolbox-python)\n```\n\nFor the powered by python robotics badge\n\n[![Powered by Python Robotics](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/pr_powered.min.svg)](https://github.com/petercorke/robotics-toolbox-python)\n\ncopy the following\n\n```\n[![Powered by Python Robotics](https://raw.githubusercontent.com/petercorke/robotics-toolbox-python/master/.github/svg/pr_powered.min.svg)](https://github.com/petercorke/robotics-toolbox-python)\n```\n\n<br>\n\n<a id='8'></a>\n\n## Common Issues and Solutions\n\nSee the common issues with fixes [here](https://github.com/petercorke/robotics-toolbox-python/wiki/Common-Issues).\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2020 jhavl  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A Python library for robotics education and research",
    "version": "1.1.0",
    "project_urls": {
        "documentation": "https://petercorke.github.io/robotics-toolbox-python/",
        "homepage": "https://github.com/petercorke/robotics-toolbox-python",
        "repository": "https://github.com/petercorke/robotics-toolbox-python"
    },
    "split_keywords": [
        "python",
        "robotics",
        "robotics-toolbox",
        "kinematics",
        "dynamics",
        "motion-planning",
        "trajectory-generation",
        "jacobian",
        "hessian",
        "control",
        "simulation",
        "robot-manipulator",
        "mobile-robot"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b90dfb560ca16f8d4f0e162f4dc5aff1ac00dd1748db55b92909553397cdf50",
                "md5": "e11a0b23304f8dbb30d784f02f862de0",
                "sha256": "ee018d4ef1399c61551e985ebb9d73d7e52533d79d866d255bc934a6099db120"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e11a0b23304f8dbb30d784f02f862de0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1932066,
            "upload_time": "2023-05-14T07:51:48",
            "upload_time_iso_8601": "2023-05-14T07:51:48.795556Z",
            "url": "https://files.pythonhosted.org/packages/0b/90/dfb560ca16f8d4f0e162f4dc5aff1ac00dd1748db55b92909553397cdf50/roboticstoolbox_python-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e43c40e13261834dc9c7e6075f5940808ba24465bcea88aa76d5b0f865433be",
                "md5": "27404f238621d598cdf8603269fdfc30",
                "sha256": "254e4bc48eb99dcb50ab86629f7f12002e91133e6b203ae0be33c6b86176f5cc"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "27404f238621d598cdf8603269fdfc30",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1869764,
            "upload_time": "2023-05-14T07:51:51",
            "upload_time_iso_8601": "2023-05-14T07:51:51.286029Z",
            "url": "https://files.pythonhosted.org/packages/4e/43/c40e13261834dc9c7e6075f5940808ba24465bcea88aa76d5b0f865433be/roboticstoolbox_python-1.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09dc745e88a18567a281b8eac0d611b4d8143f6feb1df38eedd57655189e8f60",
                "md5": "354d05a9a2fda929f48462a273c12d84",
                "sha256": "d1f42cdc6293ab12443961e95cc18a5740767d637ba6853be752419a9b7355d6"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "354d05a9a2fda929f48462a273c12d84",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 12812888,
            "upload_time": "2023-05-14T07:51:53",
            "upload_time_iso_8601": "2023-05-14T07:51:53.388374Z",
            "url": "https://files.pythonhosted.org/packages/09/dc/745e88a18567a281b8eac0d611b4d8143f6feb1df38eedd57655189e8f60/roboticstoolbox_python-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53e611c89d5e2a8529cf183cafb29e87e454fc96cbdaccb09bcf673340e28dfc",
                "md5": "dd2e242670b907d898541a7d01f1c00e",
                "sha256": "5d1a868dae72a5c9d25aab0aa8a6403e6cfb425e16ab8da64ff48289cbbb5f7e"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd2e242670b907d898541a7d01f1c00e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 13055977,
            "upload_time": "2023-05-14T07:51:56",
            "upload_time_iso_8601": "2023-05-14T07:51:56.479416Z",
            "url": "https://files.pythonhosted.org/packages/53/e6/11c89d5e2a8529cf183cafb29e87e454fc96cbdaccb09bcf673340e28dfc/roboticstoolbox_python-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d92e1a1b1fa903fe0f59762fee042e9a6d82ac4269e8fb75ab7ad5fcff84d819",
                "md5": "20e56e19c778cecedc61b6d6017fc187",
                "sha256": "e1573345ff0a51657387af190a0217f395e18ba23eafc1c40f178b23c909e44e"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "20e56e19c778cecedc61b6d6017fc187",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1907511,
            "upload_time": "2023-05-14T07:51:59",
            "upload_time_iso_8601": "2023-05-14T07:51:59.334946Z",
            "url": "https://files.pythonhosted.org/packages/d9/2e/1a1b1fa903fe0f59762fee042e9a6d82ac4269e8fb75ab7ad5fcff84d819/roboticstoolbox_python-1.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24ba70484ef78e2e03b785dc2ed50a156ab67d5c9ddf018db4ae61550910431f",
                "md5": "b439966afab31455d9138b756cc68b09",
                "sha256": "b3a3e520182542587d9e4450401c192cc69c3c9e822393b8e1b607f70f0af01e"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b439966afab31455d9138b756cc68b09",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1924622,
            "upload_time": "2023-05-14T07:52:01",
            "upload_time_iso_8601": "2023-05-14T07:52:01.559713Z",
            "url": "https://files.pythonhosted.org/packages/24/ba/70484ef78e2e03b785dc2ed50a156ab67d5c9ddf018db4ae61550910431f/roboticstoolbox_python-1.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f4193cab6e7ba52ebccffd5349aeaf986db92a6c507d994af864eb4efc7e5c5",
                "md5": "a45ac31437d59f786d3fe362683b3f68",
                "sha256": "3427e5780b932f417c5042bcc5b2ee893b218e67d1f07ba96fa3defa04bccc81"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a45ac31437d59f786d3fe362683b3f68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1932062,
            "upload_time": "2023-05-14T07:52:03",
            "upload_time_iso_8601": "2023-05-14T07:52:03.790572Z",
            "url": "https://files.pythonhosted.org/packages/4f/41/93cab6e7ba52ebccffd5349aeaf986db92a6c507d994af864eb4efc7e5c5/roboticstoolbox_python-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b16637be1394c0ed48f9c5e91a834b93fb20b99a1c3c636693e22d5fa14b71ce",
                "md5": "4a6dd87329dc4c8b710573a70ebf3a21",
                "sha256": "541cdc38cdbbf2f4b4f57988a21e728aad27c5bd065671ca6a24b5947082f4e6"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a6dd87329dc4c8b710573a70ebf3a21",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1869766,
            "upload_time": "2023-05-14T07:52:05",
            "upload_time_iso_8601": "2023-05-14T07:52:05.998959Z",
            "url": "https://files.pythonhosted.org/packages/b1/66/37be1394c0ed48f9c5e91a834b93fb20b99a1c3c636693e22d5fa14b71ce/roboticstoolbox_python-1.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "199627fe5635af372af7888589dd12aeb8d64c076472fedff4fb338daa37a3b6",
                "md5": "b6817124fb76b620ab415d345ec1f70d",
                "sha256": "6d1aacc97d4870c079f98e65b3f7b1d0be7e595971ec3cb4a0c7c0d43c14fa60"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6817124fb76b620ab415d345ec1f70d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 12813799,
            "upload_time": "2023-05-14T07:52:08",
            "upload_time_iso_8601": "2023-05-14T07:52:08.335651Z",
            "url": "https://files.pythonhosted.org/packages/19/96/27fe5635af372af7888589dd12aeb8d64c076472fedff4fb338daa37a3b6/roboticstoolbox_python-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "924429b2dfe94974f1fdea7942dcbaf12de6b59825c5ebd9557d5407e7024b15",
                "md5": "02eac8b0970839d8dc5219f1a50058d2",
                "sha256": "210e867caec1a97503072658f3752eebe899590628364da5ec21e7d5f0143cec"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02eac8b0970839d8dc5219f1a50058d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 13053937,
            "upload_time": "2023-05-14T07:52:14",
            "upload_time_iso_8601": "2023-05-14T07:52:14.207559Z",
            "url": "https://files.pythonhosted.org/packages/92/44/29b2dfe94974f1fdea7942dcbaf12de6b59825c5ebd9557d5407e7024b15/roboticstoolbox_python-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f282f5da8c3df70a0649e987f77bf0d3f2fa9be2b1b91160744d5c639c26d02",
                "md5": "01f88a804da970d32268c3941ab3caf0",
                "sha256": "b9cae8321ce5181fdf5fb57ba356d1302d96927f9e46252b88ed60a5ffb6616e"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "01f88a804da970d32268c3941ab3caf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1907516,
            "upload_time": "2023-05-14T07:52:17",
            "upload_time_iso_8601": "2023-05-14T07:52:17.119313Z",
            "url": "https://files.pythonhosted.org/packages/6f/28/2f5da8c3df70a0649e987f77bf0d3f2fa9be2b1b91160744d5c639c26d02/roboticstoolbox_python-1.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e77c8e8b4b943aad3c01ea5db771bd8d3052bfe5dd9b3f5893d9ebaa0dc61208",
                "md5": "6601cd033b56382047f5874cca063ca1",
                "sha256": "4ca60e9c1ac27288640f1c62cc6821c37f3858130ba0bd54377f3d4b9d4a9079"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6601cd033b56382047f5874cca063ca1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1924618,
            "upload_time": "2023-05-14T07:52:18",
            "upload_time_iso_8601": "2023-05-14T07:52:18.963729Z",
            "url": "https://files.pythonhosted.org/packages/e7/7c/8e8b4b943aad3c01ea5db771bd8d3052bfe5dd9b3f5893d9ebaa0dc61208/roboticstoolbox_python-1.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64ca04806da397f655b95fb80131d9f54c50b581591b7f439b39682063e6cfc5",
                "md5": "5f5ed26706b53ee75f1e9eb2488b6fea",
                "sha256": "4f0a663e6d5a986ff5e360b92d05343ab0cad18d1e96862b2f237641bc58aee7"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f5ed26706b53ee75f1e9eb2488b6fea",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1931759,
            "upload_time": "2023-05-14T07:52:21",
            "upload_time_iso_8601": "2023-05-14T07:52:21.367272Z",
            "url": "https://files.pythonhosted.org/packages/64/ca/04806da397f655b95fb80131d9f54c50b581591b7f439b39682063e6cfc5/roboticstoolbox_python-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc7b557372df585d2af59231baba225cd4e57769d806f480678232a5cd58e6e4",
                "md5": "dac283d2e722f2687f1c45c84872e3e2",
                "sha256": "0f556c4df7769c8a3f540b14c838b08e027400f229a11422078dab86ad32e030"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dac283d2e722f2687f1c45c84872e3e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 12811793,
            "upload_time": "2023-05-14T07:52:23",
            "upload_time_iso_8601": "2023-05-14T07:52:23.300834Z",
            "url": "https://files.pythonhosted.org/packages/fc/7b/557372df585d2af59231baba225cd4e57769d806f480678232a5cd58e6e4/roboticstoolbox_python-1.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "235499ab65e39a77c1488b5f7a245dc6af8ee00023b802d0166adb744fe834d5",
                "md5": "b5725adccd7390070190aaaf3e07794e",
                "sha256": "128aefb842b99201e4ac3227a5a0ec3f80e945f1adf173fd478513eefbd206ad"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5725adccd7390070190aaaf3e07794e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 13052498,
            "upload_time": "2023-05-14T07:52:26",
            "upload_time_iso_8601": "2023-05-14T07:52:26.579496Z",
            "url": "https://files.pythonhosted.org/packages/23/54/99ab65e39a77c1488b5f7a245dc6af8ee00023b802d0166adb744fe834d5/roboticstoolbox_python-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92a21b177e1b5ae44f36a4b50e78c07c74b8b5fde8064bb9ed2207740c343760",
                "md5": "9a3acf3070367b83cb84b3fd07339d66",
                "sha256": "b7bf3443b75e9cd545d3613f729afcb4f03ae7b99a57f51265636bb51fbc11b1"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "9a3acf3070367b83cb84b3fd07339d66",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1907281,
            "upload_time": "2023-05-14T07:52:29",
            "upload_time_iso_8601": "2023-05-14T07:52:29.465555Z",
            "url": "https://files.pythonhosted.org/packages/92/a2/1b177e1b5ae44f36a4b50e78c07c74b8b5fde8064bb9ed2207740c343760/roboticstoolbox_python-1.1.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b6637af8c56216ef033bb063cb1aaa26115f71e998c70735e45a65cb3b91ba7",
                "md5": "319a56805225a19f902931686cb44919",
                "sha256": "41b6c6d7985a965d8021652584f0abe483b90effa177e683fe670dd0befff824"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "319a56805225a19f902931686cb44919",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1924531,
            "upload_time": "2023-05-14T07:52:31",
            "upload_time_iso_8601": "2023-05-14T07:52:31.285039Z",
            "url": "https://files.pythonhosted.org/packages/0b/66/37af8c56216ef033bb063cb1aaa26115f71e998c70735e45a65cb3b91ba7/roboticstoolbox_python-1.1.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cfdb82aaff6adc4bc1bf25b11cd7b9f8e6b1c90fe20d747fdd920f46f1d9ce9",
                "md5": "11d72813dfea200942af71285ca3acb9",
                "sha256": "3f170c80bfbfbb1c3b7f57851f3047b4880223380170d65a5e7896bcdd79ee90"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11d72813dfea200942af71285ca3acb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1932057,
            "upload_time": "2023-05-14T07:52:32",
            "upload_time_iso_8601": "2023-05-14T07:52:32.797495Z",
            "url": "https://files.pythonhosted.org/packages/7c/fd/b82aaff6adc4bc1bf25b11cd7b9f8e6b1c90fe20d747fdd920f46f1d9ce9/roboticstoolbox_python-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9431c76cfe24dabf2daf3c3eca334cefbbfb4562fa3e3191c1741c29b115578a",
                "md5": "3a60f620760c81907f7ce0fc2c5a5aa7",
                "sha256": "2c021de3e6683437b04cc17a918da6b27bc23f2b802dd444d3ad87b0c756e70e"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3a60f620760c81907f7ce0fc2c5a5aa7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1869752,
            "upload_time": "2023-05-14T07:52:35",
            "upload_time_iso_8601": "2023-05-14T07:52:35.117739Z",
            "url": "https://files.pythonhosted.org/packages/94/31/c76cfe24dabf2daf3c3eca334cefbbfb4562fa3e3191c1741c29b115578a/roboticstoolbox_python-1.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d54d90e1001871e5889fe37cb86225452a6a582390288dd075e90ed64891de5",
                "md5": "c5f9d975efd3bda8b051a46776e6998f",
                "sha256": "151dca9c19d686a0ba9b70afe8c0030f99549ebdec2b5f8db0578c8e95375119"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c5f9d975efd3bda8b051a46776e6998f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 12815066,
            "upload_time": "2023-05-14T07:52:37",
            "upload_time_iso_8601": "2023-05-14T07:52:37.251678Z",
            "url": "https://files.pythonhosted.org/packages/2d/54/d90e1001871e5889fe37cb86225452a6a582390288dd075e90ed64891de5/roboticstoolbox_python-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "201f51d7c53f5413a48eb69e807e3b9c1c13e4f4567779302f5e8cf3a2349127",
                "md5": "e7e97e50e9c7396f196cc1c170e49236",
                "sha256": "70f531a2c4cede1d9f20b5af8b3d5b308346abafd3415d075018b1417683b657"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7e97e50e9c7396f196cc1c170e49236",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 13055698,
            "upload_time": "2023-05-14T07:52:40",
            "upload_time_iso_8601": "2023-05-14T07:52:40.330725Z",
            "url": "https://files.pythonhosted.org/packages/20/1f/51d7c53f5413a48eb69e807e3b9c1c13e4f4567779302f5e8cf3a2349127/roboticstoolbox_python-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "320f89feb7f85a9fa0e82cbf64ab64f3606c0cd093175807fd07650420a400ec",
                "md5": "45e97878f3d430050b6fa9df24c72b71",
                "sha256": "49ab28b1e189d477550470748cba8280c35a7fac23bde38f34bf99c1b68733a6"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "45e97878f3d430050b6fa9df24c72b71",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1907494,
            "upload_time": "2023-05-14T07:52:42",
            "upload_time_iso_8601": "2023-05-14T07:52:42.785894Z",
            "url": "https://files.pythonhosted.org/packages/32/0f/89feb7f85a9fa0e82cbf64ab64f3606c0cd093175807fd07650420a400ec/roboticstoolbox_python-1.1.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79edae95c937a80074d1ca10abfe542fd6149c765ba51285affb8200f38289ba",
                "md5": "e00a084a0890603b35900af42592c51d",
                "sha256": "7de0095468f8ce0ce704ac779498e25f30a942f36fbe8e5ad4284b10f2489b0b"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e00a084a0890603b35900af42592c51d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1924617,
            "upload_time": "2023-05-14T07:52:45",
            "upload_time_iso_8601": "2023-05-14T07:52:45.141668Z",
            "url": "https://files.pythonhosted.org/packages/79/ed/ae95c937a80074d1ca10abfe542fd6149c765ba51285affb8200f38289ba/roboticstoolbox_python-1.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ab1b627c44f1d34dcdb4916500204daf9d9a368e80ab290f287016567b4fd1a",
                "md5": "f8f9f20f28329a59fed7f29c75fe5780",
                "sha256": "17e4ef774e2696e5523331d3212524d8ad1915d4d4e628d8bcc4e93d4d4e3933"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8f9f20f28329a59fed7f29c75fe5780",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1932049,
            "upload_time": "2023-05-14T07:52:47",
            "upload_time_iso_8601": "2023-05-14T07:52:47.015921Z",
            "url": "https://files.pythonhosted.org/packages/1a/b1/b627c44f1d34dcdb4916500204daf9d9a368e80ab290f287016567b4fd1a/roboticstoolbox_python-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "860e1c567d0f3e5011aecc004ce30c3e591b3044920a62132e19f1ee5596d186",
                "md5": "da27a12fb9156de123a17f90716cad52",
                "sha256": "7ec50737ae2c7b50c487ff6d726318f06f1e682e6a697c9209b4187faf94f2e0"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "da27a12fb9156de123a17f90716cad52",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1869756,
            "upload_time": "2023-05-14T07:52:48",
            "upload_time_iso_8601": "2023-05-14T07:52:48.540191Z",
            "url": "https://files.pythonhosted.org/packages/86/0e/1c567d0f3e5011aecc004ce30c3e591b3044920a62132e19f1ee5596d186/roboticstoolbox_python-1.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc7ff88975ac526fd6dbcf1177adcdee51a640c450a29eaa45099f566c50dc29",
                "md5": "366a24a6e7fa679e2e857bb9913462a1",
                "sha256": "a88f21cb888e65785f252e8ff5fa527b638676ff856780e9613f5caedf9a0115"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "366a24a6e7fa679e2e857bb9913462a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 12811830,
            "upload_time": "2023-05-14T07:52:51",
            "upload_time_iso_8601": "2023-05-14T07:52:51.079466Z",
            "url": "https://files.pythonhosted.org/packages/dc/7f/f88975ac526fd6dbcf1177adcdee51a640c450a29eaa45099f566c50dc29/roboticstoolbox_python-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d75dcbe9862ba64b52fdc61f1f8a09f0a2462ab629af2ed41c9b262d824614c5",
                "md5": "6c69a07710b8db37de1a5b227dc2b3c7",
                "sha256": "cbd358e51205c9d791f9b44e2fdef908d76d18eafb43cd7d392d61aa20e45b9c"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c69a07710b8db37de1a5b227dc2b3c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 13053865,
            "upload_time": "2023-05-14T07:52:53",
            "upload_time_iso_8601": "2023-05-14T07:52:53.831466Z",
            "url": "https://files.pythonhosted.org/packages/d7/5d/cbe9862ba64b52fdc61f1f8a09f0a2462ab629af2ed41c9b262d824614c5/roboticstoolbox_python-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07062830680a0a464546c4c01436201348e44281f49f06ec7470279ed19f84b2",
                "md5": "75206d9ed5d3728926cbe2dafff8c077",
                "sha256": "babeb8e02e6f7eba7666590aae10bc84921f81e3dbcd98115e725c1af74c47fd"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "75206d9ed5d3728926cbe2dafff8c077",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1907495,
            "upload_time": "2023-05-14T07:52:59",
            "upload_time_iso_8601": "2023-05-14T07:52:59.864039Z",
            "url": "https://files.pythonhosted.org/packages/07/06/2830680a0a464546c4c01436201348e44281f49f06ec7470279ed19f84b2/roboticstoolbox_python-1.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db0e567245392c6c44eb531702a98febb28603e9bf8ec09e697bfa6184e7fc39",
                "md5": "f9ffd1e63dcb98504d16d9a84ce0ceb4",
                "sha256": "ddc3b1deebcfc8d40503ec8c3f8f65cee79acb6691d75932765fe1d33fb3e013"
            },
            "downloads": -1,
            "filename": "roboticstoolbox_python-1.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f9ffd1e63dcb98504d16d9a84ce0ceb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1924610,
            "upload_time": "2023-05-14T07:53:01",
            "upload_time_iso_8601": "2023-05-14T07:53:01.768106Z",
            "url": "https://files.pythonhosted.org/packages/db/0e/567245392c6c44eb531702a98febb28603e9bf8ec09e697bfa6184e7fc39/roboticstoolbox_python-1.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0499c460df149faac36e0a4f4a47111ac23ae25154d0e29065747ea972e78920",
                "md5": "2fe721b531f5ff3786a4a8abc5f3fcc0",
                "sha256": "34043160297cdd047d2082925c3bb0e7d0d96eb9d0497098c3446bf58b24e587"
            },
            "downloads": -1,
            "filename": "roboticstoolbox-python-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2fe721b531f5ff3786a4a8abc5f3fcc0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1418931,
            "upload_time": "2023-05-14T07:53:04",
            "upload_time_iso_8601": "2023-05-14T07:53:04.139833Z",
            "url": "https://files.pythonhosted.org/packages/04/99/c460df149faac36e0a4f4a47111ac23ae25154d0e29065747ea972e78920/roboticstoolbox-python-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-14 07:53:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "petercorke",
    "github_project": "robotics-toolbox-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "roboticstoolbox-python"
}
        
Elapsed time: 0.07622s