robot-description-builder


Namerobot-description-builder JSON
Version 0.0.3 PyPI version JSON
download
home_pageNone
SummaryA libary to create (valid) Robot descriptions
upload_time2023-12-15 10:13:22
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords urdf robotics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Robot-description-builder 🐍
> **A Python Package for create (valid) Robot descriptions**

[![PyPI - Status](https://img.shields.io/pypi/status/robot-description-builder)](https://github.com/SuperJappie08/robot-description-builder/blob/master/robot-description-builder-py/README.md)
[![PyPI](https://img.shields.io/pypi/v/robot-description-builder)](https://pypi.org/project/robot-description-builder/)
[![PyPI - Implementation](https://img.shields.io/pypi/implementation/robot-description-builder)](https://pypi.org/project/robot-description-builder/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/robot-description-builder)](https://pypi.org/project/robot-description-builder/)
[![PyPI - License](https://img.shields.io/pypi/l/robot-description-builder)](https://github.com/SuperJappie08/robot-description-builder/blob/master/robot-description-builder-py/LICENSE)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
<!-- [![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) -->

<!-- Robot-description-builder -->
<b title="Robot-description-builder for Python 🐍">`robot-description-builder`</b> is a <b title="written in Rust 🦀">Python library</b> for creating **robot descriptions** in multiple formats, like **[URDF](http://wiki.ros.org/urdf)**, for use in various **robotics and simulation** applications such as ROS and Gazebo Simulator.

<!-- ADD SOMETHING ABOUT BEING WRITTEN IN RUST -->
The <span title="robot-description-builder for Python 🐍">Python version of `robot-description-builder`</span> is written in <span title="Rust 🦀">Rust</span> using [PyO3](https://github.com/PyO3/pyo3) by wrapping the <a href="https://crates.io/crates/robot-description-builder" title="robot-description-builder for Rust 🦀">`robot-description-builder`</a> Rust crate. This has been done for the following reasons:
- Using <span title="Rust 🦀">Rust</span> prevented memory leaks, which would occur in a full <span title="Python 🐍">Python</span> implementation. (I had not heard of the [`weakref`](https://docs.python.org/3/library/weakref.html) module, yet.)
- Using <span title="Rust 🦀">Rust</span> also allows for interesting compile time validation, which is only available in the <span title="Rust 🦀">Rust</span> Language. Resulting in the [`SmartJointBuilder`](https://docs.rs/robot-description-builder/latest/robot_description_builder/struct.SmartJointBuilder.html) (Only available in the <a href="https://crates.io/crates/robot-description-builder" title="robot-description-builder for Rust 🦀">Rust version</a>).
- Creating a <span title="Rust 🦀">Rust</span> library and wrapping it in <span title="Python 🐍">Python</span> creates two libraries *with little or no extra work*[^1].
<!-- - Creating a <span title="Rust 🦀">Rust</span> and wrapping it for <span title="Python 🐍">Python</span>, creates two libraries with little to no extra effort[^1]. -->

[^1]: Famous last words.
<!-- ADD SOMETHING ABOUT ABRV> to rdb -->

## Installation
<b title="Robot-description-builder for Python 🐍">`robot-description-builder`</b> can be installed from PyPi using the following command:
```
$ pip install robot-description-builder
```

## Features
- Support for the Full [URDF spec](http://wiki.ros.org/urdf/XML), fully compatible starting at ROS Indigo. (`Transmission`s are different before ROS Indigo, other features should work)
  - Support for all base URDF geometry types: `Box`, `Cylinder`, `Sphere` and `Mesh`.
- Mirroring of Kinematic chains.
- Easy cloning/renaming Kinematic chains by changing the `group_id`.
- ROS independent, can be run on any machine using Python 3.8 and above.
<!-- TODO: EXPAND FEATURE LIST -->
<pre align="center">🚧UNDER CONSTRUCTION: EXPAND FEATURE LIST🚧</pre>

### Compatibility chart
<!-- COMPATIBILTY CHART FORMAT? -->
| Spec | Support | State |
|:----:|:-------:|:-----:|
| [URDF](http://wiki.ros.org/urdf) | ✔/🔩 **WIP** | Fully supported **TRANSMISIONS ARE CURRENTLY INCORRECT** |
| [URDF Gazebo](http://sdformat.org/tutorials?tut=sdformat_urdf_extensions&cat=specification&) | 🔩/❌ | Extension unsupported, Base URDF compatibility avaible |
| [SDF](http://sdformat.org/) | ❌ | Planned |

## Using <b title="robot-description-builder for Python 🐍">`robot-description-builder`</b>
<!--TODO: REWRITE FIRST SENTENCE-->
It is recommended to import only the classes needed from the package or import the module as `rdb`, since the package name (<span title="robot-description-builder for Python 🐍">`robot_description_builder`</span>) is quite long.
<!-- TODO: An example -->
```python
import robot_description_builder as rdb
# TODO: EXPAND
```
<pre align="center">🚧UNDER CONSTRUCTION: EXPAND EXAMPLE🚧</pre>

## Documentation
This <span title="🐍📦">Python Package</span> has typing support and comes fully equiped with `docstrings` and stub files. *Documentation pages comming soon(ish).*
<!-- TODO: Link to docs -->
<pre align="center">🚧UNDER CONSTRUCTION: CREATE DOCUMENTATION PAGES🚧</pre>


## Roadmap
- [ ] Add documentation pages.
- [ ] Add shorthand `Link` constructors.
- [ ] Add (partial) support for [SDFormat](http://sdformat.org/).
- [ ] Add support for the [Gazebo URDF extension](http://sdformat.org/tutorials?tut=sdformat_urdf_extensions&cat=specification&) support.
- [ ] \(Optional\) Add (partial) support for the [MIT Drake URDF extension](https://drake.mit.edu/doxygen_cxx/group__multibody__parsing.html#multibody_parsing_drake_extensions)

### Interesting ideas with questionable feasibility
- [ ] Add `SmartJointBuilder`, similar to the [Rust version](https://github.com/SuperJappie08/robot-description-builder/blob/master/robot-description-builder/README.md)
  > It would need to be a dynamic class with function injection, <b>(ASSUMPTION)</b> which would not work with IntelliSense making.

## Lessons
<!-- TODO: Add Lessons/Design Decisions -->
<pre align="center">🚧UNDER CONSTRUCTION: ADD LESSONS/DESIGN DECISIONS🚧</pre>

## License
<!-- Robot-description-builder <sup>(for Python)</sup> is licensed under the [MIT](./LICENSE) license. -->
<b title="Robot-description-builder for Python 🐍">`robot-description-builder`</b> is licensed under the [MIT](LICENSE) license.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "robot-description-builder",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "urdf,robotics",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/7e/97/dc709aadac59c8166d7a733e9f74ac00e9bdd4853d4213ac61c4657f6a65/robot_description_builder-0.0.3.tar.gz",
    "platform": null,
    "description": "# Robot-description-builder \ud83d\udc0d\n> **A Python Package for create (valid) Robot descriptions**\n\n[![PyPI - Status](https://img.shields.io/pypi/status/robot-description-builder)](https://github.com/SuperJappie08/robot-description-builder/blob/master/robot-description-builder-py/README.md)\n[![PyPI](https://img.shields.io/pypi/v/robot-description-builder)](https://pypi.org/project/robot-description-builder/)\n[![PyPI - Implementation](https://img.shields.io/pypi/implementation/robot-description-builder)](https://pypi.org/project/robot-description-builder/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/robot-description-builder)](https://pypi.org/project/robot-description-builder/)\n[![PyPI - License](https://img.shields.io/pypi/l/robot-description-builder)](https://github.com/SuperJappie08/robot-description-builder/blob/master/robot-description-builder-py/LICENSE)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n<!-- [![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) -->\n\n<!-- Robot-description-builder -->\n<b title=\"Robot-description-builder for Python \ud83d\udc0d\">`robot-description-builder`</b> is a <b title=\"written in Rust \ud83e\udd80\">Python library</b> for creating **robot descriptions** in multiple formats, like **[URDF](http://wiki.ros.org/urdf)**, for use in various **robotics and simulation** applications such as ROS and Gazebo Simulator.\n\n<!-- ADD SOMETHING ABOUT BEING WRITTEN IN RUST -->\nThe <span title=\"robot-description-builder for Python \ud83d\udc0d\">Python version of `robot-description-builder`</span> is written in <span title=\"Rust \ud83e\udd80\">Rust</span> using [PyO3](https://github.com/PyO3/pyo3) by wrapping the <a href=\"https://crates.io/crates/robot-description-builder\" title=\"robot-description-builder for Rust \ud83e\udd80\">`robot-description-builder`</a> Rust crate. This has been done for the following reasons:\n- Using <span title=\"Rust \ud83e\udd80\">Rust</span> prevented memory leaks, which would occur in a full <span title=\"Python \ud83d\udc0d\">Python</span> implementation. (I had not heard of the [`weakref`](https://docs.python.org/3/library/weakref.html) module, yet.)\n- Using <span title=\"Rust \ud83e\udd80\">Rust</span> also allows for interesting compile time validation, which is only available in the <span title=\"Rust \ud83e\udd80\">Rust</span> Language. Resulting in the [`SmartJointBuilder`](https://docs.rs/robot-description-builder/latest/robot_description_builder/struct.SmartJointBuilder.html) (Only available in the <a href=\"https://crates.io/crates/robot-description-builder\" title=\"robot-description-builder for Rust \ud83e\udd80\">Rust version</a>).\n- Creating a <span title=\"Rust \ud83e\udd80\">Rust</span> library and wrapping it in <span title=\"Python \ud83d\udc0d\">Python</span> creates two libraries *with little or no extra work*[^1].\n<!-- - Creating a <span title=\"Rust \ud83e\udd80\">Rust</span> and wrapping it for <span title=\"Python \ud83d\udc0d\">Python</span>, creates two libraries with little to no extra effort[^1]. -->\n\n[^1]: Famous last words.\n<!-- ADD SOMETHING ABOUT ABRV> to rdb -->\n\n## Installation\n<b title=\"Robot-description-builder for Python \ud83d\udc0d\">`robot-description-builder`</b> can be installed from PyPi using the following command:\n```\n$ pip install robot-description-builder\n```\n\n## Features\n- Support for the Full [URDF spec](http://wiki.ros.org/urdf/XML), fully compatible starting at ROS Indigo. (`Transmission`s are different before ROS Indigo, other features should work)\n  - Support for all base URDF geometry types: `Box`, `Cylinder`, `Sphere` and `Mesh`.\n- Mirroring of Kinematic chains.\n- Easy cloning/renaming Kinematic chains by changing the `group_id`.\n- ROS independent, can be run on any machine using Python 3.8 and above.\n<!-- TODO: EXPAND FEATURE LIST -->\n<pre align=\"center\">\ud83d\udea7UNDER CONSTRUCTION: EXPAND FEATURE LIST\ud83d\udea7</pre>\n\n### Compatibility chart\n<!-- COMPATIBILTY CHART FORMAT? -->\n| Spec | Support | State |\n|:----:|:-------:|:-----:|\n| [URDF](http://wiki.ros.org/urdf) | \u2714/\ud83d\udd29 **WIP** | Fully supported **TRANSMISIONS ARE CURRENTLY INCORRECT** |\n| [URDF Gazebo](http://sdformat.org/tutorials?tut=sdformat_urdf_extensions&cat=specification&) | \ud83d\udd29/\u274c | Extension unsupported, Base URDF compatibility avaible |\n| [SDF](http://sdformat.org/) | \u274c | Planned |\n\n## Using <b title=\"robot-description-builder for Python \ud83d\udc0d\">`robot-description-builder`</b>\n<!--TODO: REWRITE FIRST SENTENCE-->\nIt is recommended to import only the classes needed from the package or import the module as `rdb`, since the package name (<span title=\"robot-description-builder for Python \ud83d\udc0d\">`robot_description_builder`</span>) is quite long.\n<!-- TODO: An example -->\n```python\nimport robot_description_builder as rdb\n# TODO: EXPAND\n```\n<pre align=\"center\">\ud83d\udea7UNDER CONSTRUCTION: EXPAND EXAMPLE\ud83d\udea7</pre>\n\n## Documentation\nThis <span title=\"\ud83d\udc0d\ud83d\udce6\">Python Package</span> has typing support and comes fully equiped with `docstrings` and stub files. *Documentation pages comming soon(ish).*\n<!-- TODO: Link to docs -->\n<pre align=\"center\">\ud83d\udea7UNDER CONSTRUCTION: CREATE DOCUMENTATION PAGES\ud83d\udea7</pre>\n\n\n## Roadmap\n- [ ] Add documentation pages.\n- [ ] Add shorthand `Link` constructors.\n- [ ] Add (partial) support for [SDFormat](http://sdformat.org/).\n- [ ] Add support for the [Gazebo URDF extension](http://sdformat.org/tutorials?tut=sdformat_urdf_extensions&cat=specification&) support.\n- [ ] \\(Optional\\) Add (partial) support for the [MIT Drake URDF extension](https://drake.mit.edu/doxygen_cxx/group__multibody__parsing.html#multibody_parsing_drake_extensions)\n\n### Interesting ideas with questionable feasibility\n- [ ] Add `SmartJointBuilder`, similar to the [Rust version](https://github.com/SuperJappie08/robot-description-builder/blob/master/robot-description-builder/README.md)\n  > It would need to be a dynamic class with function injection, <b>(ASSUMPTION)</b> which would not work with IntelliSense making.\n\n## Lessons\n<!-- TODO: Add Lessons/Design Decisions -->\n<pre align=\"center\">\ud83d\udea7UNDER CONSTRUCTION: ADD LESSONS/DESIGN DECISIONS\ud83d\udea7</pre>\n\n## License\n<!-- Robot-description-builder <sup>(for Python)</sup> is licensed under the [MIT](./LICENSE) license. -->\n<b title=\"Robot-description-builder for Python \ud83d\udc0d\">`robot-description-builder`</b> is licensed under the [MIT](LICENSE) license.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A libary to create (valid) Robot descriptions",
    "version": "0.0.3",
    "project_urls": {
        "Changelog": "https://github.com/SuperJappie08/robot-description-builder/tree/master/robot-description-builder-py/CHANGELOG.md",
        "Homepage": "https://github.com/SuperJappie08/robot-description-builder",
        "Repository": "https://github.com/SuperJappie08/robot-description-builder/tree/master/robot-description-builder-py"
    },
    "split_keywords": [
        "urdf",
        "robotics"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bd1f306e17b6c5f582c6a677557d62edd742f44c63a27f7c4974525f895d85e",
                "md5": "4eebfce00adc9a8a4920c2498c34208a",
                "sha256": "0f54471bb9f573668a2f011afedb7ae43318fdc06b70397e8768d33dcdff08b9"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4eebfce00adc9a8a4920c2498c34208a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1595980,
            "upload_time": "2023-12-15T10:10:53",
            "upload_time_iso_8601": "2023-12-15T10:10:53.493676Z",
            "url": "https://files.pythonhosted.org/packages/4b/d1/f306e17b6c5f582c6a677557d62edd742f44c63a27f7c4974525f895d85e/robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "beacd58dbf02382e6e784c0f972030fbb229263187a899106aa0ea11abebbfa2",
                "md5": "ee4e320a106b6fdcc9198886ef79bac2",
                "sha256": "301958c028b49ce84f366a350e66b0fd7280db26a17f5969131e746c586216a2"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ee4e320a106b6fdcc9198886ef79bac2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1585672,
            "upload_time": "2023-12-15T10:10:56",
            "upload_time_iso_8601": "2023-12-15T10:10:56.281265Z",
            "url": "https://files.pythonhosted.org/packages/be/ac/d58dbf02382e6e784c0f972030fbb229263187a899106aa0ea11abebbfa2/robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85b91ec053e00d6ec7d66909d4eaacfff6a564d160b34100b23138c1be669c37",
                "md5": "57e4d953db3307b23b483f5cafafedc0",
                "sha256": "66735beb5c312c75bd163117f98244cb645aed3b2ebd50036af8a6c520cbb6d0"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "57e4d953db3307b23b483f5cafafedc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1722808,
            "upload_time": "2023-12-15T10:10:58",
            "upload_time_iso_8601": "2023-12-15T10:10:58.385390Z",
            "url": "https://files.pythonhosted.org/packages/85/b9/1ec053e00d6ec7d66909d4eaacfff6a564d160b34100b23138c1be669c37/robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4ca33d22432136fcc9d08a5135296e85c1f4f34a12aae2244b50b3693a9b201",
                "md5": "bac46ce36b20ae9b5ca8075c915485c7",
                "sha256": "0f1fa3d17c2ab6da2a5527533c5bfed269ab8a50172feee1fa2348887e5a54d2"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bac46ce36b20ae9b5ca8075c915485c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1851635,
            "upload_time": "2023-12-15T10:11:00",
            "upload_time_iso_8601": "2023-12-15T10:11:00.894214Z",
            "url": "https://files.pythonhosted.org/packages/b4/ca/33d22432136fcc9d08a5135296e85c1f4f34a12aae2244b50b3693a9b201/robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9a5a956bfedcfd4439e22c0fe089aa95a153ba15ce05779e229f1e6180494c7",
                "md5": "b5d17aac96285182d2c6665379931608",
                "sha256": "cd1aeaa6e55b63dfd475d3308710a2a078723511b1da29cad40922746c8c9564"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5d17aac96285182d2c6665379931608",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1592931,
            "upload_time": "2023-12-15T10:11:03",
            "upload_time_iso_8601": "2023-12-15T10:11:03.409559Z",
            "url": "https://files.pythonhosted.org/packages/c9/a5/a956bfedcfd4439e22c0fe089aa95a153ba15ce05779e229f1e6180494c7/robot_description_builder-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a97f386bbbd32ffac20170be8d2322b099d0d3eb74e3e910abe470d4c65bc374",
                "md5": "adb811c863493410779966f0ec4b9821",
                "sha256": "8651e09c1c0cdf1987f1e979db63570bfc930fb7b40ee66343038f6cd41f4e3e"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "adb811c863493410779966f0ec4b9821",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1637952,
            "upload_time": "2023-12-15T10:11:06",
            "upload_time_iso_8601": "2023-12-15T10:11:06.203209Z",
            "url": "https://files.pythonhosted.org/packages/a9/7f/386bbbd32ffac20170be8d2322b099d0d3eb74e3e910abe470d4c65bc374/robot_description_builder-0.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e51ea141a239825ddda4725db8bc432e02528052e9da6735e97fdc96d5fe9380",
                "md5": "d775bbc9c5507215c4686982860478b1",
                "sha256": "8955b7998b08d6e935440acb0291c41619eab62cc38d9f75337450133ca56f1d"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d775bbc9c5507215c4686982860478b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 420375,
            "upload_time": "2023-12-15T10:11:08",
            "upload_time_iso_8601": "2023-12-15T10:11:08.378668Z",
            "url": "https://files.pythonhosted.org/packages/e5/1e/a141a239825ddda4725db8bc432e02528052e9da6735e97fdc96d5fe9380/robot_description_builder-0.0.3-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb54f82ea310755d1bd25ab72a6d1e505c40310c47ddc4f566103136c46d4039",
                "md5": "98cb97dc68668bbca6e9d917ac77fc91",
                "sha256": "49d5d62ddcd21a76631974ba81de0f5af75da2646f766a577718e6a92deef347"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "98cb97dc68668bbca6e9d917ac77fc91",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 458011,
            "upload_time": "2023-12-15T10:11:10",
            "upload_time_iso_8601": "2023-12-15T10:11:10.631750Z",
            "url": "https://files.pythonhosted.org/packages/bb/54/f82ea310755d1bd25ab72a6d1e505c40310c47ddc4f566103136c46d4039/robot_description_builder-0.0.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aebcc3bb8755223aa4f94685a3e4aa7198b852e739a5c1b103d085359e79b4a9",
                "md5": "43072d8e7aabe258e53d78071f7acd35",
                "sha256": "d09b2a8795039f5a00da361842573eceacbed2f46398a01017492c5ceae65b8d"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43072d8e7aabe258e53d78071f7acd35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 655196,
            "upload_time": "2023-12-15T10:11:12",
            "upload_time_iso_8601": "2023-12-15T10:11:12.762154Z",
            "url": "https://files.pythonhosted.org/packages/ae/bc/c3bb8755223aa4f94685a3e4aa7198b852e739a5c1b103d085359e79b4a9/robot_description_builder-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f0ec6368fa77d1d434223dcf04419a9d8146fa1a5a780a03ade2f998e8f19c9",
                "md5": "bb717a920879dfad6e47886e6620aa87",
                "sha256": "ec2695a6fb487b3dcf3ca49b600b370217f2d3c26b491717bb534fe867e4410b"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bb717a920879dfad6e47886e6620aa87",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 643401,
            "upload_time": "2023-12-15T10:11:15",
            "upload_time_iso_8601": "2023-12-15T10:11:15.071616Z",
            "url": "https://files.pythonhosted.org/packages/4f/0e/c6368fa77d1d434223dcf04419a9d8146fa1a5a780a03ade2f998e8f19c9/robot_description_builder-0.0.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "250e5b081210c436d4bb61fd3aa4d56a299dbefe954ec67b7a943e7bec1ad5cc",
                "md5": "1d490df3f639aa4a1842d94d9b9f67b4",
                "sha256": "75b66b264dae79aec0f5e5614ca70c4e080e08e1e83f001a0fe527b9ed2ef1d1"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1d490df3f639aa4a1842d94d9b9f67b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1595800,
            "upload_time": "2023-12-15T10:11:17",
            "upload_time_iso_8601": "2023-12-15T10:11:17.406519Z",
            "url": "https://files.pythonhosted.org/packages/25/0e/5b081210c436d4bb61fd3aa4d56a299dbefe954ec67b7a943e7bec1ad5cc/robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92ea3925267644c8c371b4f631507e7929cd32474c3668ceb1a6cdc9f2ad1b02",
                "md5": "5b4f86372ef64dc81652d0f6fb5897d8",
                "sha256": "22b26f98471938fbb9bfb10a8ca9fafba987229a00646d07a75dec4cdc098fe5"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5b4f86372ef64dc81652d0f6fb5897d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1589884,
            "upload_time": "2023-12-15T10:11:19",
            "upload_time_iso_8601": "2023-12-15T10:11:19.485391Z",
            "url": "https://files.pythonhosted.org/packages/92/ea/3925267644c8c371b4f631507e7929cd32474c3668ceb1a6cdc9f2ad1b02/robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa078e52a75519011e5e229c0eec29ba392bf471f979ee7ed9aab95154bc9455",
                "md5": "5b97c2a40a6edda2c09d4fca9ec2af89",
                "sha256": "8735180f180cd49c786a1538ab1ae7132db0c9a420a1ee64d9c1511f770898c7"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5b97c2a40a6edda2c09d4fca9ec2af89",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1720239,
            "upload_time": "2023-12-15T10:11:21",
            "upload_time_iso_8601": "2023-12-15T10:11:21.318302Z",
            "url": "https://files.pythonhosted.org/packages/fa/07/8e52a75519011e5e229c0eec29ba392bf471f979ee7ed9aab95154bc9455/robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6f0509f1532bdf0f187fa7ee43bec02b3a964feccaea135654b87ce18f8b176",
                "md5": "fce0475b55bdcf4d8dbf6b41973d9fd6",
                "sha256": "325ffb47ff44df2fe91df24e44554f89525d36075a6af331e9198d805c4763b9"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fce0475b55bdcf4d8dbf6b41973d9fd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1851158,
            "upload_time": "2023-12-15T10:11:23",
            "upload_time_iso_8601": "2023-12-15T10:11:23.232835Z",
            "url": "https://files.pythonhosted.org/packages/b6/f0/509f1532bdf0f187fa7ee43bec02b3a964feccaea135654b87ce18f8b176/robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1185efbdd206a1156e57149d4d2e402534211b4d866850f0429c5c2922eea773",
                "md5": "658996b4f1862733e17e43285c09b04b",
                "sha256": "d1f1ea0cb3f4ae570b5d17c344e4c570eec2b12a2d6d2fd2266da145a1670d3f"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "658996b4f1862733e17e43285c09b04b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1593016,
            "upload_time": "2023-12-15T10:11:25",
            "upload_time_iso_8601": "2023-12-15T10:11:25.010501Z",
            "url": "https://files.pythonhosted.org/packages/11/85/efbdd206a1156e57149d4d2e402534211b4d866850f0429c5c2922eea773/robot_description_builder-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abdca1b8b37c185488236f43ad177f9f5045407c39546f723b48672858edb59a",
                "md5": "bf3182244e70c70289335360d06074c5",
                "sha256": "e05e2074c35729781b7ba1636c0351ece80a887b37db99524563ec3e2704f3bf"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "bf3182244e70c70289335360d06074c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1633616,
            "upload_time": "2023-12-15T10:11:27",
            "upload_time_iso_8601": "2023-12-15T10:11:27.343574Z",
            "url": "https://files.pythonhosted.org/packages/ab/dc/a1b8b37c185488236f43ad177f9f5045407c39546f723b48672858edb59a/robot_description_builder-0.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c23b085f5a55c94ed2cb836bcfd0d8e428e297ca13de1aa3a5675bbe315e2fdc",
                "md5": "43729efec1fa9b87a17df016f421c6ac",
                "sha256": "59f4df3ec662a8587ff85b67e4fd59b64a4560b0fb4bf75cb426c20c628a92be"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "43729efec1fa9b87a17df016f421c6ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 420334,
            "upload_time": "2023-12-15T10:11:29",
            "upload_time_iso_8601": "2023-12-15T10:11:29.568028Z",
            "url": "https://files.pythonhosted.org/packages/c2/3b/085f5a55c94ed2cb836bcfd0d8e428e297ca13de1aa3a5675bbe315e2fdc/robot_description_builder-0.0.3-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d082a36d75b4d51c0671b24b47acf917b85b440707d05831ffe6d4794cec96e",
                "md5": "650c8342d14f8cb2ce4ef9d5d77c5871",
                "sha256": "ae1787dce52a099cd5665857ac6e929ae645fab7a0c473fea1300673ed7232ab"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "650c8342d14f8cb2ce4ef9d5d77c5871",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 458861,
            "upload_time": "2023-12-15T10:11:31",
            "upload_time_iso_8601": "2023-12-15T10:11:31.679214Z",
            "url": "https://files.pythonhosted.org/packages/2d/08/2a36d75b4d51c0671b24b47acf917b85b440707d05831ffe6d4794cec96e/robot_description_builder-0.0.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a632a9f0145a019bc3653d394a64922ca3be46ec9b983d4a74ee60c332a5162",
                "md5": "b0f1d0d09ba12253e6f19cf337a88f6c",
                "sha256": "67435f2a4af6b5517343cd204824aea3e6673e517ac3d1e1bdbc47b677c95bad"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0f1d0d09ba12253e6f19cf337a88f6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 647340,
            "upload_time": "2023-12-15T10:11:33",
            "upload_time_iso_8601": "2023-12-15T10:11:33.316205Z",
            "url": "https://files.pythonhosted.org/packages/2a/63/2a9f0145a019bc3653d394a64922ca3be46ec9b983d4a74ee60c332a5162/robot_description_builder-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e884bac31b16e6c2bda777f73b40be3fecb85bdb39e0390f91002c47f1e9be7c",
                "md5": "51ecac9d60a3173dabefdc2aeb31b460",
                "sha256": "fda7f79556e8a3ede35c4199727711d1bbc88e390269d4ac8866422abcee258a"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "51ecac9d60a3173dabefdc2aeb31b460",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 633444,
            "upload_time": "2023-12-15T10:11:35",
            "upload_time_iso_8601": "2023-12-15T10:11:35.493286Z",
            "url": "https://files.pythonhosted.org/packages/e8/84/bac31b16e6c2bda777f73b40be3fecb85bdb39e0390f91002c47f1e9be7c/robot_description_builder-0.0.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cd6e0974b60819b2cfa00af07936901df4c38854f04840bcf4d26c3a59acd26",
                "md5": "48616168223b210bb4a84b39238b4d99",
                "sha256": "0e2d20c24ccc0aee482ed903eea05392d01b8f3b37230f4c1ef25401ad87e712"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48616168223b210bb4a84b39238b4d99",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1592227,
            "upload_time": "2023-12-15T10:11:37",
            "upload_time_iso_8601": "2023-12-15T10:11:37.801796Z",
            "url": "https://files.pythonhosted.org/packages/5c/d6/e0974b60819b2cfa00af07936901df4c38854f04840bcf4d26c3a59acd26/robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9db0fe11d82f486a8c29de1f019fc12d564e8442cf1ea0407097fbd7ea9794c",
                "md5": "731eab57900a272a33c235c12bedd85e",
                "sha256": "158d35d38ce4c49236d3bb34152101fb4b887879a10388de8d4925d547592bbb"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "731eab57900a272a33c235c12bedd85e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1580857,
            "upload_time": "2023-12-15T10:11:39",
            "upload_time_iso_8601": "2023-12-15T10:11:39.624685Z",
            "url": "https://files.pythonhosted.org/packages/e9/db/0fe11d82f486a8c29de1f019fc12d564e8442cf1ea0407097fbd7ea9794c/robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f296550423cc9b7c1030b0eb838937e83cf6a2d884109cc5f5369e282fdffed9",
                "md5": "d8f0eaff83238e93cd27ce2909f3b53a",
                "sha256": "b13209e149354308029d20ad599b53b2a4e573859a081d199a7ed0181a9e2e1a"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d8f0eaff83238e93cd27ce2909f3b53a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1713641,
            "upload_time": "2023-12-15T10:11:42",
            "upload_time_iso_8601": "2023-12-15T10:11:42.509791Z",
            "url": "https://files.pythonhosted.org/packages/f2/96/550423cc9b7c1030b0eb838937e83cf6a2d884109cc5f5369e282fdffed9/robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1270a5c3b093828c744fa8b25e7f4a86b588270ab452427ff8c1fa6c0784f2bf",
                "md5": "8b953372dbcc42614e470eb377f1bea7",
                "sha256": "a0d4fe26fc4acb5a3284edd9a45f41c6d53ab00acedf95e5974834fe43b07767"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8b953372dbcc42614e470eb377f1bea7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1823119,
            "upload_time": "2023-12-15T10:11:44",
            "upload_time_iso_8601": "2023-12-15T10:11:44.522682Z",
            "url": "https://files.pythonhosted.org/packages/12/70/a5c3b093828c744fa8b25e7f4a86b588270ab452427ff8c1fa6c0784f2bf/robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8880d7609b2001046311b950f6605546b576fa8073fd6402c4c44690c27ff684",
                "md5": "c60c81bd3dd8fc923604520f8966b2ea",
                "sha256": "6f631926319eb7548fdef6c46e25d73ad737d735e2349720f3d64a68aae65371"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c60c81bd3dd8fc923604520f8966b2ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1588702,
            "upload_time": "2023-12-15T10:11:46",
            "upload_time_iso_8601": "2023-12-15T10:11:46.570091Z",
            "url": "https://files.pythonhosted.org/packages/88/80/d7609b2001046311b950f6605546b576fa8073fd6402c4c44690c27ff684/robot_description_builder-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36afa5144011fbb1530ab20fcf291c41e7e4d34f381631d97aa7d28b6aefb51a",
                "md5": "ecdff0e2c5da858e3fab6cd552e99534",
                "sha256": "5521ed292f30bf630c92af402d56989529806c19f1036606e5cdf4af82fcbc37"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ecdff0e2c5da858e3fab6cd552e99534",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1632793,
            "upload_time": "2023-12-15T10:11:49",
            "upload_time_iso_8601": "2023-12-15T10:11:49.015287Z",
            "url": "https://files.pythonhosted.org/packages/36/af/a5144011fbb1530ab20fcf291c41e7e4d34f381631d97aa7d28b6aefb51a/robot_description_builder-0.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6aee6291438a2f7ef8c19a254ad3b10a939faa278b410e411c6eeef4d32de33",
                "md5": "991c996ab9b5d9ff46f6a8b9cbf70b25",
                "sha256": "3fc1c3fb70159fc2dc81721b9573aacf534b1ed16bfb2702c139c08a78a7b61f"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "991c996ab9b5d9ff46f6a8b9cbf70b25",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 421992,
            "upload_time": "2023-12-15T10:11:50",
            "upload_time_iso_8601": "2023-12-15T10:11:50.949453Z",
            "url": "https://files.pythonhosted.org/packages/b6/ae/e6291438a2f7ef8c19a254ad3b10a939faa278b410e411c6eeef4d32de33/robot_description_builder-0.0.3-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "13a277bfb41e026fef6bdc2f543870f547722d571f476096f568f758b60f02cb",
                "md5": "9d70eb4303f43d520b0dbfeaa40dfcb0",
                "sha256": "28402bf8349c6d40e1b32ad5fa333d02a11c9f0484e24d8b942e00688723429c"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9d70eb4303f43d520b0dbfeaa40dfcb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 459016,
            "upload_time": "2023-12-15T10:11:53",
            "upload_time_iso_8601": "2023-12-15T10:11:53.111309Z",
            "url": "https://files.pythonhosted.org/packages/13/a2/77bfb41e026fef6bdc2f543870f547722d571f476096f568f758b60f02cb/robot_description_builder-0.0.3-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1fef1faa131ac0ed998f3cb594be152690c46bddd64a17bd2e324e73959a639f",
                "md5": "2bd150e258d7a13e662f86784d539998",
                "sha256": "d8192c6a8a691055c5e97767c38531f14e3245ebb7640dc63870665eca1400bf"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2bd150e258d7a13e662f86784d539998",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1592227,
            "upload_time": "2023-12-15T10:11:55",
            "upload_time_iso_8601": "2023-12-15T10:11:55.183296Z",
            "url": "https://files.pythonhosted.org/packages/1f/ef/1faa131ac0ed998f3cb594be152690c46bddd64a17bd2e324e73959a639f/robot_description_builder-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a9109efecb6b1d5756d1a0ad11681360ca98440919cd169ae8c19001e705683",
                "md5": "5fcaf0c89ae6f9d7d23ca139290f63cd",
                "sha256": "dcd2df23b5516e879a8b362ea8cf009648d44773a1c04844a1836da63846d78a"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5fcaf0c89ae6f9d7d23ca139290f63cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1580859,
            "upload_time": "2023-12-15T10:11:57",
            "upload_time_iso_8601": "2023-12-15T10:11:57.614613Z",
            "url": "https://files.pythonhosted.org/packages/0a/91/09efecb6b1d5756d1a0ad11681360ca98440919cd169ae8c19001e705683/robot_description_builder-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b5b963e25d2bee9ed84c598237b6a5fb6811ee3c5556991c32846593510a44c",
                "md5": "ef2b892734a04b12e2690d5b2ce86598",
                "sha256": "39d9c3950c6aa8359d024af3369b29abefdcc57ff572a8f7893539b1c17d3519"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ef2b892734a04b12e2690d5b2ce86598",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1713641,
            "upload_time": "2023-12-15T10:11:59",
            "upload_time_iso_8601": "2023-12-15T10:11:59.472392Z",
            "url": "https://files.pythonhosted.org/packages/3b/5b/963e25d2bee9ed84c598237b6a5fb6811ee3c5556991c32846593510a44c/robot_description_builder-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c760038d707c8513d90d8f43c9abf9bf2d24e658a2d89f44869bb0843489d71f",
                "md5": "b1873456e85262a22bdcbabf5e10db4a",
                "sha256": "cfd066fd9a6a3d330966b4544fa08a64b0dc9811114cffcc5458007ac2c62f6f"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b1873456e85262a22bdcbabf5e10db4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1823118,
            "upload_time": "2023-12-15T10:12:01",
            "upload_time_iso_8601": "2023-12-15T10:12:01.643715Z",
            "url": "https://files.pythonhosted.org/packages/c7/60/038d707c8513d90d8f43c9abf9bf2d24e658a2d89f44869bb0843489d71f/robot_description_builder-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb86fd74442533e9076706e4e8aa1f97d26c2be5c38f76b4e7d8c947173d1f5a",
                "md5": "c91703b768ec178ca9b6f2c12f71a8d6",
                "sha256": "b348abc0e8989b58ca879c77e38b985a7fe55e51734fbe3918fc1247f6690630"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c91703b768ec178ca9b6f2c12f71a8d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 655438,
            "upload_time": "2023-12-15T10:12:04",
            "upload_time_iso_8601": "2023-12-15T10:12:04.246684Z",
            "url": "https://files.pythonhosted.org/packages/eb/86/fd74442533e9076706e4e8aa1f97d26c2be5c38f76b4e7d8c947173d1f5a/robot_description_builder-0.0.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c3a32f26fa7bdf6fb6b74c4c31354fc1d3d8165d0a08f0619fc5484689fdd2a",
                "md5": "70c173930e1f935d0524f007b1656c68",
                "sha256": "36b6ae71eb040a76f59358645aacaae8094f411891cf49a2f6f60195fa105a00"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "70c173930e1f935d0524f007b1656c68",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 644234,
            "upload_time": "2023-12-15T10:12:06",
            "upload_time_iso_8601": "2023-12-15T10:12:06.206028Z",
            "url": "https://files.pythonhosted.org/packages/1c/3a/32f26fa7bdf6fb6b74c4c31354fc1d3d8165d0a08f0619fc5484689fdd2a/robot_description_builder-0.0.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69627cc0b56ed2f47065dbcb57787389296feb1ef10c5c0cd618338c1b2fc880",
                "md5": "631fee9bf84aa80a805464b46f40d524",
                "sha256": "e7b6f1392d7c59a05b1a84b25b3b43defbc01f45d66664f7e04402e134f98476"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "631fee9bf84aa80a805464b46f40d524",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1595715,
            "upload_time": "2023-12-15T10:12:08",
            "upload_time_iso_8601": "2023-12-15T10:12:08.513591Z",
            "url": "https://files.pythonhosted.org/packages/69/62/7cc0b56ed2f47065dbcb57787389296feb1ef10c5c0cd618338c1b2fc880/robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c1e7395e6579108e30d578a058b0d6ef4ee29d0f509c3b5fc2a6f3220a39a82",
                "md5": "02ff783857eb576aecc3e6e6c1c1c915",
                "sha256": "e9e643e91f3ed9d3a3146a394dde396ffbdcca3a12c411142d97e095baa949bb"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "02ff783857eb576aecc3e6e6c1c1c915",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1587456,
            "upload_time": "2023-12-15T10:12:10",
            "upload_time_iso_8601": "2023-12-15T10:12:10.623281Z",
            "url": "https://files.pythonhosted.org/packages/9c/1e/7395e6579108e30d578a058b0d6ef4ee29d0f509c3b5fc2a6f3220a39a82/robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0dfae1f5cdc38e36668265ae1b5ee8b3595cb232a4ba77483aa7ac7581361043",
                "md5": "e1d1495c68b34d4ea68067e97c659dc2",
                "sha256": "0a72a9fbfbbfef0f14487515eab994105e3f7fee1bfada8e462fbecd491ce377"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e1d1495c68b34d4ea68067e97c659dc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1723632,
            "upload_time": "2023-12-15T10:12:12",
            "upload_time_iso_8601": "2023-12-15T10:12:12.478404Z",
            "url": "https://files.pythonhosted.org/packages/0d/fa/e1f5cdc38e36668265ae1b5ee8b3595cb232a4ba77483aa7ac7581361043/robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb326b98a67c3f0fd95688321de04776b7dd62f6cf1c61b80806a58d4f7ff64c",
                "md5": "f18acaefc81a37825a6e7d1498a09b55",
                "sha256": "5ed4f43e7054738bf770c7dc310a08020b9fe5985c2dfcf1bf2b2db9e4f815b6"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f18acaefc81a37825a6e7d1498a09b55",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1850813,
            "upload_time": "2023-12-15T10:12:14",
            "upload_time_iso_8601": "2023-12-15T10:12:14.421672Z",
            "url": "https://files.pythonhosted.org/packages/eb/32/6b98a67c3f0fd95688321de04776b7dd62f6cf1c61b80806a58d4f7ff64c/robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7e7d36cad4a2ca7c0be61f2f2b4d31da29135f9bca6137077046011c20435c8",
                "md5": "f8d637fc2ce62241ac94c27cdc940cfa",
                "sha256": "41cb2e7c47fa39ff1e356d895ae7c137f3e3feac57c803906384c77d098a5638"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8d637fc2ce62241ac94c27cdc940cfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1592972,
            "upload_time": "2023-12-15T10:12:17",
            "upload_time_iso_8601": "2023-12-15T10:12:17.177645Z",
            "url": "https://files.pythonhosted.org/packages/a7/e7/d36cad4a2ca7c0be61f2f2b4d31da29135f9bca6137077046011c20435c8/robot_description_builder-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7bed46b0d6d02a72c84db9b9fbf9009dd4b7ec064771f02b768651cdafce2a8",
                "md5": "af01dd87d3f12b4937cd938f91331a9b",
                "sha256": "df2fc4d1c1d5e118cf6875e28e4836a479a8667ed86d81fe35e45058b8450494"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "af01dd87d3f12b4937cd938f91331a9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1633535,
            "upload_time": "2023-12-15T10:12:19",
            "upload_time_iso_8601": "2023-12-15T10:12:19.637020Z",
            "url": "https://files.pythonhosted.org/packages/b7/be/d46b0d6d02a72c84db9b9fbf9009dd4b7ec064771f02b768651cdafce2a8/robot_description_builder-0.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27b07acdbb75e61af184d454589794ffa5d68e0bee30701c0f95564e82f7a35b",
                "md5": "00b05c6ce4ceda10498caf03051d4bcf",
                "sha256": "fc3e3640215c4d0b5c740b96436aad69334f0570e4e2dce384aeb75ca0c4e684"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "00b05c6ce4ceda10498caf03051d4bcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 419759,
            "upload_time": "2023-12-15T10:12:21",
            "upload_time_iso_8601": "2023-12-15T10:12:21.921881Z",
            "url": "https://files.pythonhosted.org/packages/27/b0/7acdbb75e61af184d454589794ffa5d68e0bee30701c0f95564e82f7a35b/robot_description_builder-0.0.3-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eeb058c6a544760ad25e14194b3e90959b61be6e97bd2073e60ee12c35e097a2",
                "md5": "60860640f4415deef606a05fbff011f9",
                "sha256": "c9184c10fce1592147d7c90bd58670edb4029f40fe5a861675fada71b7fac3e3"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "60860640f4415deef606a05fbff011f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 458337,
            "upload_time": "2023-12-15T10:12:23",
            "upload_time_iso_8601": "2023-12-15T10:12:23.553240Z",
            "url": "https://files.pythonhosted.org/packages/ee/b0/58c6a544760ad25e14194b3e90959b61be6e97bd2073e60ee12c35e097a2/robot_description_builder-0.0.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea903e9e2840dbb3b1d48f97cbb4596ece0614c1b1a0b08caea632108202b5b3",
                "md5": "bd4205da41065f8051e4265414fed115",
                "sha256": "98a61ae2197ae65f46506eba43e7a65874953c298ed2c48cd0acb86e1c87c302"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd4205da41065f8051e4265414fed115",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 655521,
            "upload_time": "2023-12-15T10:12:25",
            "upload_time_iso_8601": "2023-12-15T10:12:25.211882Z",
            "url": "https://files.pythonhosted.org/packages/ea/90/3e9e2840dbb3b1d48f97cbb4596ece0614c1b1a0b08caea632108202b5b3/robot_description_builder-0.0.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73093472cc7bf768df9153792136112cd43fdd0045f5d7aa1d595eec2906de7c",
                "md5": "d56656cb7b44ee23c27e5cf1d8c38aab",
                "sha256": "b85c5fe7533f63c7a1d35cbf76a32a1d6070d90c9eac8896d344bf529568b32a"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d56656cb7b44ee23c27e5cf1d8c38aab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 643928,
            "upload_time": "2023-12-15T10:12:27",
            "upload_time_iso_8601": "2023-12-15T10:12:27.292149Z",
            "url": "https://files.pythonhosted.org/packages/73/09/3472cc7bf768df9153792136112cd43fdd0045f5d7aa1d595eec2906de7c/robot_description_builder-0.0.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92c2351eeb83c874d03aaf05294dd50e206d9975df0aafc005d37bf15caf1700",
                "md5": "5d9d1c9037bacbec31b52956cee630b1",
                "sha256": "00c6f5117e30157557e52e3ada107b5e6be278fa02fce9db8700bc5ac9e99acb"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d9d1c9037bacbec31b52956cee630b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1596789,
            "upload_time": "2023-12-15T10:12:29",
            "upload_time_iso_8601": "2023-12-15T10:12:29.549192Z",
            "url": "https://files.pythonhosted.org/packages/92/c2/351eeb83c874d03aaf05294dd50e206d9975df0aafc005d37bf15caf1700/robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22495172ebc43047e91cae956727ceb4bdcbc70bc622d6437ad88a127efd9fcf",
                "md5": "8b2f8189f3040518965282af74d87ae3",
                "sha256": "866a9079cc4f1069bf3ed0434128aff91fe95500b69e55c225a1c32e1032ca76"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8b2f8189f3040518965282af74d87ae3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1585585,
            "upload_time": "2023-12-15T10:12:31",
            "upload_time_iso_8601": "2023-12-15T10:12:31.446816Z",
            "url": "https://files.pythonhosted.org/packages/22/49/5172ebc43047e91cae956727ceb4bdcbc70bc622d6437ad88a127efd9fcf/robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af22235e91b80eefcac52037bec52a96bfb1f8270d8c5b03a70de76ea0679f2d",
                "md5": "47eb8924d09dce3f08a52e918ede23da",
                "sha256": "54a66b03943cb2112ca08d1bf68e6bf2f21c01ea48149efb77b587c8d3a6ca28"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "47eb8924d09dce3f08a52e918ede23da",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1722969,
            "upload_time": "2023-12-15T10:12:33",
            "upload_time_iso_8601": "2023-12-15T10:12:33.451868Z",
            "url": "https://files.pythonhosted.org/packages/af/22/235e91b80eefcac52037bec52a96bfb1f8270d8c5b03a70de76ea0679f2d/robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f5a64f2c691d074d0d5ea14e9483e7b5a932f2512ab1fffd2e0acaf31861d09",
                "md5": "3b7189274c76d78028eee33b4c590bd5",
                "sha256": "789d6972dcf3d71b3204968de557ccbf5cefac8c09d096773180591d85eea534"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3b7189274c76d78028eee33b4c590bd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1852757,
            "upload_time": "2023-12-15T10:12:35",
            "upload_time_iso_8601": "2023-12-15T10:12:35.269574Z",
            "url": "https://files.pythonhosted.org/packages/5f/5a/64f2c691d074d0d5ea14e9483e7b5a932f2512ab1fffd2e0acaf31861d09/robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "363a0fcf47378f10164738aa162142d7c931651ff1a03fb1fc1bab716adea8c1",
                "md5": "f6f7d67c19244b2ad1570fc7f205b5de",
                "sha256": "c246dc17bad49d4d59fc3b53c6af8379a77bcb6cdfa7e2a4e60373346264a29d"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6f7d67c19244b2ad1570fc7f205b5de",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1593135,
            "upload_time": "2023-12-15T10:12:37",
            "upload_time_iso_8601": "2023-12-15T10:12:37.159892Z",
            "url": "https://files.pythonhosted.org/packages/36/3a/0fcf47378f10164738aa162142d7c931651ff1a03fb1fc1bab716adea8c1/robot_description_builder-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d78dd1d4c2231d7897b019dbd31320c71341d0fc5a7657f8a708c65fe584ea56",
                "md5": "417bc436f77a3f4049fdd62d4d20f807",
                "sha256": "9f15de72461ecacc0bd7b166f746fde6b1f244af1e0c34512ba12cab93be963e"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "417bc436f77a3f4049fdd62d4d20f807",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1634217,
            "upload_time": "2023-12-15T10:12:39",
            "upload_time_iso_8601": "2023-12-15T10:12:39.181018Z",
            "url": "https://files.pythonhosted.org/packages/d7/8d/d1d4c2231d7897b019dbd31320c71341d0fc5a7657f8a708c65fe584ea56/robot_description_builder-0.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90502c73e4f2dd387bba4bfaba15aa21dd80b8a14101fcc6b8cf847f87fea346",
                "md5": "97ded298343dbac34fde6ffdc67dc484",
                "sha256": "4237bce5444db98c473b53b92d85cd22374a64407f074f187f7be82dd2fe1331"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "97ded298343dbac34fde6ffdc67dc484",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 420844,
            "upload_time": "2023-12-15T10:12:41",
            "upload_time_iso_8601": "2023-12-15T10:12:41.526460Z",
            "url": "https://files.pythonhosted.org/packages/90/50/2c73e4f2dd387bba4bfaba15aa21dd80b8a14101fcc6b8cf847f87fea346/robot_description_builder-0.0.3-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d29c8d1d6d2f2297cbfb3b38f2ff7a93bb1a28f43b8b329927547dfb87674ae7",
                "md5": "907172cd3bb36bb7b8cbf09706a11014",
                "sha256": "428c6d360cb2e7ffeeeb56428d2d0fad5da5a5b910e7b20de01e2f149ff5d71e"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "907172cd3bb36bb7b8cbf09706a11014",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 458026,
            "upload_time": "2023-12-15T10:12:43",
            "upload_time_iso_8601": "2023-12-15T10:12:43.678338Z",
            "url": "https://files.pythonhosted.org/packages/d2/9c/8d1d6d2f2297cbfb3b38f2ff7a93bb1a28f43b8b329927547dfb87674ae7/robot_description_builder-0.0.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fec52f7b880ccb9479f71dc1abf84d0d588379d91aa43f68799060eba52d725d",
                "md5": "95f6cd06503c12f759da60a741188f38",
                "sha256": "c3e4e9ee245db8efe354573d6a7e75a2a88d176a0aada0fe3162e6506aea5006"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "95f6cd06503c12f759da60a741188f38",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1600890,
            "upload_time": "2023-12-15T10:12:45",
            "upload_time_iso_8601": "2023-12-15T10:12:45.475789Z",
            "url": "https://files.pythonhosted.org/packages/fe/c5/2f7b880ccb9479f71dc1abf84d0d588379d91aa43f68799060eba52d725d/robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fb826878bdbb94b49f238a581304c601b2294c3fb194b823179ee9e4a56d909",
                "md5": "75673f54a0f1fdcbf8deea72070b1766",
                "sha256": "60f15bf736d46acb7ed06d990c3fb1f2d9fe95a0ea2d457cf069607a0b42eb7b"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "75673f54a0f1fdcbf8deea72070b1766",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1583019,
            "upload_time": "2023-12-15T10:12:47",
            "upload_time_iso_8601": "2023-12-15T10:12:47.654814Z",
            "url": "https://files.pythonhosted.org/packages/7f/b8/26878bdbb94b49f238a581304c601b2294c3fb194b823179ee9e4a56d909/robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7261c1049046012d9d6e10e7fe44094c29fc4d515ced8f9f6fc04ee8ee9d7324",
                "md5": "411ca8d9ed8ba7673aa0e68be71c1e32",
                "sha256": "e26a7926164ea2c08ba7f644ecf1507cf2836af187026fe807ec4fbabfd98afa"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "411ca8d9ed8ba7673aa0e68be71c1e32",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1728051,
            "upload_time": "2023-12-15T10:12:49",
            "upload_time_iso_8601": "2023-12-15T10:12:49.375470Z",
            "url": "https://files.pythonhosted.org/packages/72/61/c1049046012d9d6e10e7fe44094c29fc4d515ced8f9f6fc04ee8ee9d7324/robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95c39f3516e5464507aee2591de8d2ce55b2748844ed20e99418cbfe5e48a883",
                "md5": "ef17ec26bb2b07b64d64052697e66baa",
                "sha256": "802e6a335a7bb644e5f4f0a7a1ccabc5da0fc9b55c076909c5176764a13a3e6a"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ef17ec26bb2b07b64d64052697e66baa",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1853793,
            "upload_time": "2023-12-15T10:12:51",
            "upload_time_iso_8601": "2023-12-15T10:12:51.383667Z",
            "url": "https://files.pythonhosted.org/packages/95/c3/9f3516e5464507aee2591de8d2ce55b2748844ed20e99418cbfe5e48a883/robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5eba735e3414ede9fbaebb4075659bc8244059a5213fd11bfc67b73a1e5c53fc",
                "md5": "1953395bf3cb8cc631bdf81608912206",
                "sha256": "82ee756245a010b91ec67e7885ab0dd919d872b98d0f92408e02c5ef18012517"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1953395bf3cb8cc631bdf81608912206",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1596466,
            "upload_time": "2023-12-15T10:12:53",
            "upload_time_iso_8601": "2023-12-15T10:12:53.518127Z",
            "url": "https://files.pythonhosted.org/packages/5e/ba/735e3414ede9fbaebb4075659bc8244059a5213fd11bfc67b73a1e5c53fc/robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1eafd91aead265555edd705d32cb0554b935eca67cde5480d735c4462124615",
                "md5": "15bc88752db9744434f110863a4b545b",
                "sha256": "43bd05bf867f2f051058d249ff44f377e11dbc2238c02cedb6b549d87459a210"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "15bc88752db9744434f110863a4b545b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1639681,
            "upload_time": "2023-12-15T10:12:55",
            "upload_time_iso_8601": "2023-12-15T10:12:55.394556Z",
            "url": "https://files.pythonhosted.org/packages/a1/ea/fd91aead265555edd705d32cb0554b935eca67cde5480d735c4462124615/robot_description_builder-0.0.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd104362e122241b3f1726c2a0b8a26347c63eafe4389971e9093b140eb15dca",
                "md5": "ad318ab22a4e036df9077fbfab7e13a5",
                "sha256": "9930d43db9bc451fd69bf462116f3a63d9418a5dc23921f605d3fffba6d4b7cd"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ad318ab22a4e036df9077fbfab7e13a5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1599741,
            "upload_time": "2023-12-15T10:12:57",
            "upload_time_iso_8601": "2023-12-15T10:12:57.652998Z",
            "url": "https://files.pythonhosted.org/packages/cd/10/4362e122241b3f1726c2a0b8a26347c63eafe4389971e9093b140eb15dca/robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f20882136aa22e56eda438ec2dfb2c58a4433c9fb2bd221b989834ff80a75dcd",
                "md5": "22860a38f4c11e76cd58eefb9c488606",
                "sha256": "80b048965ded4efe725ee95bcc98d2d5c1e8a9e70cfe0ba78806ce96e2626451"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "22860a38f4c11e76cd58eefb9c488606",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1584328,
            "upload_time": "2023-12-15T10:12:59",
            "upload_time_iso_8601": "2023-12-15T10:12:59.814745Z",
            "url": "https://files.pythonhosted.org/packages/f2/08/82136aa22e56eda438ec2dfb2c58a4433c9fb2bd221b989834ff80a75dcd/robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f8601dce2a0d900414012c213a4b065c21f90e0694b4b13787df740a2bcce94",
                "md5": "1a03b2a27eb3c645dc2dbcbdaa26754e",
                "sha256": "46afe0ed8e803addd07853b8a593593509d846ab4e5de5fde1d4343848be5ac7"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1a03b2a27eb3c645dc2dbcbdaa26754e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1727290,
            "upload_time": "2023-12-15T10:13:01",
            "upload_time_iso_8601": "2023-12-15T10:13:01.699460Z",
            "url": "https://files.pythonhosted.org/packages/6f/86/01dce2a0d900414012c213a4b065c21f90e0694b4b13787df740a2bcce94/robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0fea559b6b4f8a0926b6a55638eaaa6c79363467a50a4bb342bdbecc9d0b8bd",
                "md5": "84021fddc05af5ef3915e27a8f4b2b66",
                "sha256": "991db9981bb158678e6b8a29fe632d8b28846341fa9bb09968ffdc7534d59b79"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "84021fddc05af5ef3915e27a8f4b2b66",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1852536,
            "upload_time": "2023-12-15T10:13:03",
            "upload_time_iso_8601": "2023-12-15T10:13:03.769776Z",
            "url": "https://files.pythonhosted.org/packages/f0/fe/a559b6b4f8a0926b6a55638eaaa6c79363467a50a4bb342bdbecc9d0b8bd/robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3990847cab9e8742fd66981ccb38c228ab5d5d8a8dd8df9424403d32af3c849b",
                "md5": "2b7ea361a227a66cb8c99868518c82db",
                "sha256": "191d99f57640aa498980892c6697567f727e6b4fc7251fbc97f627ded60580a2"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b7ea361a227a66cb8c99868518c82db",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1597134,
            "upload_time": "2023-12-15T10:13:05",
            "upload_time_iso_8601": "2023-12-15T10:13:05.595913Z",
            "url": "https://files.pythonhosted.org/packages/39/90/847cab9e8742fd66981ccb38c228ab5d5d8a8dd8df9424403d32af3c849b/robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5d6be9c3e088d594ba71e33476eb39993ceda7f25400b86c21d10d743310eab",
                "md5": "ec9da1433a4a563b27db92fd243dc090",
                "sha256": "5ab06ce0284e95108d735c3b7248f3b3b7524d5baa5b582da7515f4b8983c302"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ec9da1433a4a563b27db92fd243dc090",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1639201,
            "upload_time": "2023-12-15T10:13:07",
            "upload_time_iso_8601": "2023-12-15T10:13:07.389238Z",
            "url": "https://files.pythonhosted.org/packages/f5/d6/be9c3e088d594ba71e33476eb39993ceda7f25400b86c21d10d743310eab/robot_description_builder-0.0.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "215b50225e015e29480b3cbf476959f8176fa2e93f7d4bfc4eefe1cff75332d5",
                "md5": "0e71b197a6767019fc7a31c41871e6a7",
                "sha256": "6b866cde7dc207bf83ee3b94a4162759e522255a6730e83dbb1c53d72a0fc1ac"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0e71b197a6767019fc7a31c41871e6a7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1600909,
            "upload_time": "2023-12-15T10:13:09",
            "upload_time_iso_8601": "2023-12-15T10:13:09.217036Z",
            "url": "https://files.pythonhosted.org/packages/21/5b/50225e015e29480b3cbf476959f8176fa2e93f7d4bfc4eefe1cff75332d5/robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91415eab4bbf896e06e66ed7b06d7a54ce94902b6127f04a2ac261760293cb1c",
                "md5": "3fe80289011631df56ab29d40dc78619",
                "sha256": "2b6f7633ce77f7ba412a6b9da4a50bbb1174f6c897d26888814f7169509a8c3e"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3fe80289011631df56ab29d40dc78619",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1582919,
            "upload_time": "2023-12-15T10:13:11",
            "upload_time_iso_8601": "2023-12-15T10:13:11.613409Z",
            "url": "https://files.pythonhosted.org/packages/91/41/5eab4bbf896e06e66ed7b06d7a54ce94902b6127f04a2ac261760293cb1c/robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edc1361009b9a302011c516ae267782802a1cdec8f61195629c414cb4d46d12a",
                "md5": "d55b148d391743761ddccdb8f1fe9207",
                "sha256": "10b705d663e79bec3328ae35ac0b005eb2a9f62e86baaa0dcf18c21b59c4397e"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d55b148d391743761ddccdb8f1fe9207",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1727897,
            "upload_time": "2023-12-15T10:13:14",
            "upload_time_iso_8601": "2023-12-15T10:13:14.255813Z",
            "url": "https://files.pythonhosted.org/packages/ed/c1/361009b9a302011c516ae267782802a1cdec8f61195629c414cb4d46d12a/robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa9a5050c8bda1fb334d811019760d711090b8f424ba1396bda42dfc4e3bea73",
                "md5": "a62a36870136deabcc7a8c1534855d8e",
                "sha256": "2ed4bde870c499b781609cfb1f004beeb25792bbc136ba090de10dacdb023bbf"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a62a36870136deabcc7a8c1534855d8e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1853796,
            "upload_time": "2023-12-15T10:13:16",
            "upload_time_iso_8601": "2023-12-15T10:13:16.220967Z",
            "url": "https://files.pythonhosted.org/packages/fa/9a/5050c8bda1fb334d811019760d711090b8f424ba1396bda42dfc4e3bea73/robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29e6e7640867e61d54d09c8c2b58a0a8676520f54ff8e685f6a8ecf0376e1b2c",
                "md5": "ac3fe571245da6ce79c394d6f5496df9",
                "sha256": "3a4fd0411fc83f5d11a8152ae458271ce4294d0e4a47ca55ff729a30a38d867e"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac3fe571245da6ce79c394d6f5496df9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1596965,
            "upload_time": "2023-12-15T10:13:18",
            "upload_time_iso_8601": "2023-12-15T10:13:18.228144Z",
            "url": "https://files.pythonhosted.org/packages/29/e6/e7640867e61d54d09c8c2b58a0a8676520f54ff8e685f6a8ecf0376e1b2c/robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df0742c6eca4743c14fa29c1c8c32e0a73dbc6df76e55ec3b694d360557d03e1",
                "md5": "9abe08df764a32f29fd0b50965b60413",
                "sha256": "e28354a90cf554e71862b834736251be9082a7537f46958698c6cdd24adc7a9b"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9abe08df764a32f29fd0b50965b60413",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1639240,
            "upload_time": "2023-12-15T10:13:20",
            "upload_time_iso_8601": "2023-12-15T10:13:20.235501Z",
            "url": "https://files.pythonhosted.org/packages/df/07/42c6eca4743c14fa29c1c8c32e0a73dbc6df76e55ec3b694d360557d03e1/robot_description_builder-0.0.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e97dc709aadac59c8166d7a733e9f74ac00e9bdd4853d4213ac61c4657f6a65",
                "md5": "d7971dfc1543cbf82a68e8eab5dda0c3",
                "sha256": "10cab88c5a0a00703ab46a254e2cf7e82dabe25672b690431d942da5866b2146"
            },
            "downloads": -1,
            "filename": "robot_description_builder-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "d7971dfc1543cbf82a68e8eab5dda0c3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 142805,
            "upload_time": "2023-12-15T10:13:22",
            "upload_time_iso_8601": "2023-12-15T10:13:22.045616Z",
            "url": "https://files.pythonhosted.org/packages/7e/97/dc709aadac59c8166d7a733e9f74ac00e9bdd4853d4213ac61c4657f6a65/robot_description_builder-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-15 10:13:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SuperJappie08",
    "github_project": "robot-description-builder",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "robot-description-builder"
}
        
Elapsed time: 0.21039s