cyclonedds-nightly


Namecyclonedds-nightly JSON
Version 2023.9.7 PyPI version JSON
download
home_pagehttps://cyclonedds.io
SummaryEclipse Cyclone DDS Python binding
upload_time2023-09-07 00:33:45
maintainerThijs Miedema
docs_urlNone
authorEclipse Cyclone DDS Committers
requires_python>=3.7
licenseEPL-2.0, BSD-3-Clause
keywords eclipse cyclone dds pub sub pubsub iot cyclonedds cdr omg idl middleware ros
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            [![License](https://img.shields.io/badge/License-EPL%202.0-blue)](https://choosealicense.com/licenses/epl-2.0/)
[![License](https://img.shields.io/badge/License-EDL%201.0-blue)](https://choosealicense.com/licenses/edl-1.0/)
[![Website](https://img.shields.io/badge/web-cyclonedds.io-blue)](https://cyclonedds.io)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cyclonedds)](https://pypi.org/project/cyclonedds/)
[![PyPI](https://img.shields.io/pypi/v/cyclonedds)](https://pypi.org/project/cyclonedds/)
[![Community](https://img.shields.io/badge/discord-join%20community-5865f2)](https://discord.gg/BkRYQPpZVV)

# Python binding for Eclipse Cyclone DDS

A Python binding for [Eclipse Cyclone DDS][1].

# Getting Started

Eclipse CycloneDDS Python requires Python version 3.7 or higher. You can install [with included Cyclone DDS binaries](#installing-with-pre-built-binaries) or leveraging an existing Cyclone DDS installation by [installing from source](#installing-from-source) via PyPi.

Documentation can be found on the [cyclonedds.io](https://cyclonedds.io/docs/) website: [Python API docs][3]

<!----><a name="installing-with-pre-built-binaries"></a>
## Installing with pre-built Cyclone DDS binaries

This is the most straightforward method to install Cyclone DDS Python, but there are a couple of caveats. The pre-built package:
 * has no support for DDS Security,
 * has no support for shared memory via Iceoryx,
 * comes with generic Cyclone DDS binaries that are not optimized per-platform.

If these are of concern, proceed with an [installation from source](#installing-from-source). If not, running this installation is as simple as:

```bash
    $ pip install cyclonedds
```

You can also use the nightly build stream instead, which is built from the `master` branches of `cyclonedds` and `cyclonedds-python`. This will always get you the latest and greatest, but less stable version that might contain API breaks.

```bash
    $ pip install cyclonedds-nightly
```

<!----><a name="installing-from-source"></a>
## Installing from source

When installing from source you can make use of the full list of features offered by [Cyclone DDS][1]. First install [Cyclone DDS][1] as normal. Make sure that [Cyclone DDS][1] is built with the ENABLE_TYPELIB option set to `ON` (the default for this option). Then continue by setting the `CYCLONEDDS_HOME` environment variable to the installation location of [Cyclone DDS][1], which is the same as what was used for `CMAKE_INSTALL_PREFIX`. You will have to have this variable active any time you run Python code that depends on `cyclonedds` so adding it to `.bashrc` on Linux, `~/bash_profile` on MacOS or the System Variables in Windows can be helpful. This also allows you to switch, move or update [Cyclone DDS][1] without recompiling the Python package.

You'll need the Python development headers to complete the install. If using `apt`, try `sudo apt install python3-dev`. For other distributions, see [this comment](https://stackoverflow.com/a/21530768).

<!----><a name="installing-from-source-via-pypi"></a>
### via PyPi

You can install the source from the latest release from [Pypi](https://pypi.org/project/cyclonedds/), or use a tag to get a specific version. A full example (for linux) is shown below

```bash
$ git clone https://github.com/eclipse-cyclonedds/cyclonedds
$ cd cyclonedds && mkdir build install && cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=../install
$ cmake --build . --target install
$ cd ..
$ export CYCLONEDDS_HOME="$(pwd)/install"
$ pip3 install cyclonedds --no-binary cyclonedds
```

<!----><a name="installing-from-source-via-git"></a>
### via git

A full example installation of the quickest way to get started via git is shown below:

```bash
$ git clone https://github.com/eclipse-cyclonedds/cyclonedds
$ cd cyclonedds && mkdir build install && cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=../install
$ cmake --build . --target install
$ cd ..
$ export CYCLONEDDS_HOME="$(pwd)/install"
$ pip3 install git+https://github.com/eclipse-cyclonedds/cyclonedds-python
```

# Command line tooling

The Python package contains a suite of command line tools, all nested under the main entrypoint `cyclonedds`. The main help screen shows the commands available:

![`cyclonedds --help`](docs/manual/static/images/cyclonedds-help.svg)

## `cyclonedds ls`

![`cyclonedds ls --help`](docs/manual/static/images/cyclonedds-ls-help.svg)

The `ls` subcommand shows you the entities in your DDS system and their QoS settings. For example, here is the output when running the `Vehicle` example from this repo in the background:

![`cyclonedds ls --suppress-progress-bar --force-color-mode`](docs/manual/static/images/cyclonedds-ls-demo.svg)

## `cyclonedds ps`

![`cyclonedds ps --help`](docs/manual/static/images/cyclonedds-ps-help.svg)

The `ps` subcommand shows you the applications in your DDS system. Note that this depends on so called 'Participant Properties', tactfully named QoS properties in DDS participants. These were merged into CycloneDDS for version 0.10.0. Here is an example of the output when running the `Vehicle` example from this repo in the background on a single host:

![`cyclonedds ps --suppress-progress-bar --force-color-mode`](docs/manual/static/images/cyclonedds-ps-demo.svg)

## `cyclonedds typeof`

![`cyclonedds typeof --help`](docs/manual/static/images/cyclonedds-typeof-help.svg)

The `typeof` subcommand shows you the type(s) of a topic in your system. With XTypes it can happen that more than one type for each topic exists and that they are still compatible. The types are represented in IDL. Here is an example of the output when running the `Vehicle` example:

![`cyclonedds typeof Vehicle --suppress-progress-bar --force-color-mode`](docs/manual/static/images/cyclonedds-typeof-demo.svg)

## `cyclonedds subscribe`

![`cyclonedds subscribe --help`](docs/manual/static/images/cyclonedds-subscribe-help.svg)

The `subscribe` subcommand dynamically subscribes to a topic and shows you the data as it arrives. The type is discovered in a similar manner as `typeof`. Here is an example of the output when running the `Vehicle` example:

![`timeout -s INT 10s cyclonedds subscribe Vehicle --suppress-progress-bar --force-color-mode`](docs/manual/static/images/cyclonedds-subscribe-demo.svg)

## `cyclonedds publish`

![`cyclonedds publish --help`](docs/manual/static/images/cyclonedds-publish-help.svg)

The `publish` subcommand dynamically builds a REPL with datatypes and a writer for a topic and shows you the data as it arrives. The type is discovered in a similar manner as `typeof`.

## `cyclonedds performance`

![`cyclonedds performance --help`](docs/manual/static/images/cyclonedds-performance-help.svg)

The `performance` subcommand is a nicer frontend to `ddsperf` with four modes: `publish`, `subscribe`, `ping` and `pong`. The below performance run example is the `cyclonedds performance subscribe` mode rendered with `cyclonedds performance publish` running in the background.

![`cyclonedds performance --duration 21s --render-output-once-on-exit --force-color-mode subscribe --triggering-mode waitset`](docs/manual/static/images/cyclonedds-performance-subscribe-demo.svg)

# Contributing

We very much welcome all contributions to the project, whether that is questions, examples, bug
fixes, enhancements or improvements to the documentation, or anything else really.
When considering contributing code, it might be good to know that build configurations for Azure pipelines are present in the repository and that there is a test suite using pytest, along with flake8 code linting, and documentation built with sphinx. Be sure to install with the [Extra dependencies](#extra-dependencies) if you're going to run tests, lints or build the docs.

You can run the test suite and linting using the [local-ci.py](local-ci.py) script in this repo.
```bash
$ python local-ci.py
```

Or lint a single file/directory (as the whole repo can be a little noisey) using:
```bash
$ python -m flake8 path/to/some_file.py
```

You can build and serve the documentation (at http://localhost:8000/) using:
```bash
cd docs
python -m sphinx source/ _build/
# Serve the HTML files to view at localhost:8000
python -m http.server -d _build
```

# Extra dependencies

The `cyclonedds` package defines two sets of optional dependencies, `dev` and `docs`, used for developing `cyclonedds` and building the documentation, respectively. If you want to install with development tools add the component to your installation, for example:

```bash
$ pip3 install --user "cyclonedds[dev] @ git+https://github.com/eclipse-cyclonedds/cyclonedds-python"
```

Or when installing from a local git clone, which is recommended when developing or building the docs:

```bash
$ cd /path/to/git/clone
# for development:
$ pip3 install --user ".[dev]"
# for documentation generation
$ pip3 install --user ".[docs]"
# or for both
$ pip3 install --user ".[dev,docs]"
```

For more information see [the packaging guide information on optional dependencies][2].

[1]: https://github.com/eclipse-cyclonedds/cyclonedds/#eclipse-cyclone-dds
[2]: https://setuptools.pypa.io/en/latest/userguide/dependency_management.html#optional-dependencies
[3]: https://cyclonedds.io/docs/cyclonedds-python/latest/

# PyOxidizer build

You can build a self-contained binary of the `cyclonedds` CLI tool using PyOxidizer. It should be as simple as:

```bash
$ cd /path/to/git/clone
$ pip3 install --user pyoxidizer
$ pyoxidizer build
```



            

Raw data

            {
    "_id": null,
    "home_page": "https://cyclonedds.io",
    "name": "cyclonedds-nightly",
    "maintainer": "Thijs Miedema",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "thijs.miedema@zettascale.tech",
    "keywords": "eclipse,cyclone,dds,pub,sub,pubsub,iot,cyclonedds,cdr,omg,idl,middleware,ros",
    "author": "Eclipse Cyclone DDS Committers",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/a8/85/406b0c9da50e763a9e75d6805501ac1d013f92aa0bb313de421a6939ea05/cyclonedds-nightly-2023.9.7.tar.gz",
    "platform": "Windows",
    "description": "[![License](https://img.shields.io/badge/License-EPL%202.0-blue)](https://choosealicense.com/licenses/epl-2.0/)\n[![License](https://img.shields.io/badge/License-EDL%201.0-blue)](https://choosealicense.com/licenses/edl-1.0/)\n[![Website](https://img.shields.io/badge/web-cyclonedds.io-blue)](https://cyclonedds.io)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cyclonedds)](https://pypi.org/project/cyclonedds/)\n[![PyPI](https://img.shields.io/pypi/v/cyclonedds)](https://pypi.org/project/cyclonedds/)\n[![Community](https://img.shields.io/badge/discord-join%20community-5865f2)](https://discord.gg/BkRYQPpZVV)\n\n# Python binding for Eclipse Cyclone DDS\n\nA Python binding for [Eclipse Cyclone DDS][1].\n\n# Getting Started\n\nEclipse CycloneDDS Python requires Python version 3.7 or higher. You can install [with included Cyclone DDS binaries](#installing-with-pre-built-binaries) or leveraging an existing Cyclone DDS installation by [installing from source](#installing-from-source) via PyPi.\n\nDocumentation can be found on the [cyclonedds.io](https://cyclonedds.io/docs/) website: [Python API docs][3]\n\n<!----><a name=\"installing-with-pre-built-binaries\"></a>\n## Installing with pre-built Cyclone DDS binaries\n\nThis is the most straightforward method to install Cyclone DDS Python, but there are a couple of caveats. The pre-built package:\n * has no support for DDS Security,\n * has no support for shared memory via Iceoryx,\n * comes with generic Cyclone DDS binaries that are not optimized per-platform.\n\nIf these are of concern, proceed with an [installation from source](#installing-from-source). If not, running this installation is as simple as:\n\n```bash\n    $ pip install cyclonedds\n```\n\nYou can also use the nightly build stream instead, which is built from the `master` branches of `cyclonedds` and `cyclonedds-python`. This will always get you the latest and greatest, but less stable version that might contain API breaks.\n\n```bash\n    $ pip install cyclonedds-nightly\n```\n\n<!----><a name=\"installing-from-source\"></a>\n## Installing from source\n\nWhen installing from source you can make use of the full list of features offered by [Cyclone DDS][1]. First install [Cyclone DDS][1] as normal. Make sure that [Cyclone DDS][1] is built with the ENABLE_TYPELIB option set to `ON` (the default for this option). Then continue by setting the `CYCLONEDDS_HOME` environment variable to the installation location of [Cyclone DDS][1], which is the same as what was used for `CMAKE_INSTALL_PREFIX`. You will have to have this variable active any time you run Python code that depends on `cyclonedds` so adding it to `.bashrc` on Linux, `~/bash_profile` on MacOS or the System Variables in Windows can be helpful. This also allows you to switch, move or update [Cyclone DDS][1] without recompiling the Python package.\n\nYou'll need the Python development headers to complete the install. If using `apt`, try `sudo apt install python3-dev`. For other distributions, see [this comment](https://stackoverflow.com/a/21530768).\n\n<!----><a name=\"installing-from-source-via-pypi\"></a>\n### via PyPi\n\nYou can install the source from the latest release from [Pypi](https://pypi.org/project/cyclonedds/), or use a tag to get a specific version. A full example (for linux) is shown below\n\n```bash\n$ git clone https://github.com/eclipse-cyclonedds/cyclonedds\n$ cd cyclonedds && mkdir build install && cd build\n$ cmake .. -DCMAKE_INSTALL_PREFIX=../install\n$ cmake --build . --target install\n$ cd ..\n$ export CYCLONEDDS_HOME=\"$(pwd)/install\"\n$ pip3 install cyclonedds --no-binary cyclonedds\n```\n\n<!----><a name=\"installing-from-source-via-git\"></a>\n### via git\n\nA full example installation of the quickest way to get started via git is shown below:\n\n```bash\n$ git clone https://github.com/eclipse-cyclonedds/cyclonedds\n$ cd cyclonedds && mkdir build install && cd build\n$ cmake .. -DCMAKE_INSTALL_PREFIX=../install\n$ cmake --build . --target install\n$ cd ..\n$ export CYCLONEDDS_HOME=\"$(pwd)/install\"\n$ pip3 install git+https://github.com/eclipse-cyclonedds/cyclonedds-python\n```\n\n# Command line tooling\n\nThe Python package contains a suite of command line tools, all nested under the main entrypoint `cyclonedds`. The main help screen shows the commands available:\n\n![`cyclonedds --help`](docs/manual/static/images/cyclonedds-help.svg)\n\n## `cyclonedds ls`\n\n![`cyclonedds ls --help`](docs/manual/static/images/cyclonedds-ls-help.svg)\n\nThe `ls` subcommand shows you the entities in your DDS system and their QoS settings. For example, here is the output when running the `Vehicle` example from this repo in the background:\n\n![`cyclonedds ls --suppress-progress-bar --force-color-mode`](docs/manual/static/images/cyclonedds-ls-demo.svg)\n\n## `cyclonedds ps`\n\n![`cyclonedds ps --help`](docs/manual/static/images/cyclonedds-ps-help.svg)\n\nThe `ps` subcommand shows you the applications in your DDS system. Note that this depends on so called 'Participant Properties', tactfully named QoS properties in DDS participants. These were merged into CycloneDDS for version 0.10.0. Here is an example of the output when running the `Vehicle` example from this repo in the background on a single host:\n\n![`cyclonedds ps --suppress-progress-bar --force-color-mode`](docs/manual/static/images/cyclonedds-ps-demo.svg)\n\n## `cyclonedds typeof`\n\n![`cyclonedds typeof --help`](docs/manual/static/images/cyclonedds-typeof-help.svg)\n\nThe `typeof` subcommand shows you the type(s) of a topic in your system. With XTypes it can happen that more than one type for each topic exists and that they are still compatible. The types are represented in IDL. Here is an example of the output when running the `Vehicle` example:\n\n![`cyclonedds typeof Vehicle --suppress-progress-bar --force-color-mode`](docs/manual/static/images/cyclonedds-typeof-demo.svg)\n\n## `cyclonedds subscribe`\n\n![`cyclonedds subscribe --help`](docs/manual/static/images/cyclonedds-subscribe-help.svg)\n\nThe `subscribe` subcommand dynamically subscribes to a topic and shows you the data as it arrives. The type is discovered in a similar manner as `typeof`. Here is an example of the output when running the `Vehicle` example:\n\n![`timeout -s INT 10s cyclonedds subscribe Vehicle --suppress-progress-bar --force-color-mode`](docs/manual/static/images/cyclonedds-subscribe-demo.svg)\n\n## `cyclonedds publish`\n\n![`cyclonedds publish --help`](docs/manual/static/images/cyclonedds-publish-help.svg)\n\nThe `publish` subcommand dynamically builds a REPL with datatypes and a writer for a topic and shows you the data as it arrives. The type is discovered in a similar manner as `typeof`.\n\n## `cyclonedds performance`\n\n![`cyclonedds performance --help`](docs/manual/static/images/cyclonedds-performance-help.svg)\n\nThe `performance` subcommand is a nicer frontend to `ddsperf` with four modes: `publish`, `subscribe`, `ping` and `pong`. The below performance run example is the `cyclonedds performance subscribe` mode rendered with `cyclonedds performance publish` running in the background.\n\n![`cyclonedds performance --duration 21s --render-output-once-on-exit --force-color-mode subscribe --triggering-mode waitset`](docs/manual/static/images/cyclonedds-performance-subscribe-demo.svg)\n\n# Contributing\n\nWe very much welcome all contributions to the project, whether that is questions, examples, bug\nfixes, enhancements or improvements to the documentation, or anything else really.\nWhen considering contributing code, it might be good to know that build configurations for Azure pipelines are present in the repository and that there is a test suite using pytest, along with flake8 code linting, and documentation built with sphinx. Be sure to install with the [Extra dependencies](#extra-dependencies) if you're going to run tests, lints or build the docs.\n\nYou can run the test suite and linting using the [local-ci.py](local-ci.py) script in this repo.\n```bash\n$ python local-ci.py\n```\n\nOr lint a single file/directory (as the whole repo can be a little noisey) using:\n```bash\n$ python -m flake8 path/to/some_file.py\n```\n\nYou can build and serve the documentation (at http://localhost:8000/) using:\n```bash\ncd docs\npython -m sphinx source/ _build/\n# Serve the HTML files to view at localhost:8000\npython -m http.server -d _build\n```\n\n# Extra dependencies\n\nThe `cyclonedds` package defines two sets of optional dependencies, `dev` and `docs`, used for developing `cyclonedds` and building the documentation, respectively. If you want to install with development tools add the component to your installation, for example:\n\n```bash\n$ pip3 install --user \"cyclonedds[dev] @ git+https://github.com/eclipse-cyclonedds/cyclonedds-python\"\n```\n\nOr when installing from a local git clone, which is recommended when developing or building the docs:\n\n```bash\n$ cd /path/to/git/clone\n# for development:\n$ pip3 install --user \".[dev]\"\n# for documentation generation\n$ pip3 install --user \".[docs]\"\n# or for both\n$ pip3 install --user \".[dev,docs]\"\n```\n\nFor more information see [the packaging guide information on optional dependencies][2].\n\n[1]: https://github.com/eclipse-cyclonedds/cyclonedds/#eclipse-cyclone-dds\n[2]: https://setuptools.pypa.io/en/latest/userguide/dependency_management.html#optional-dependencies\n[3]: https://cyclonedds.io/docs/cyclonedds-python/latest/\n\n# PyOxidizer build\n\nYou can build a self-contained binary of the `cyclonedds` CLI tool using PyOxidizer. It should be as simple as:\n\n```bash\n$ cd /path/to/git/clone\n$ pip3 install --user pyoxidizer\n$ pyoxidizer build\n```\n\n\n",
    "bugtrack_url": null,
    "license": "EPL-2.0, BSD-3-Clause",
    "summary": "Eclipse Cyclone DDS Python binding",
    "version": "2023.9.7",
    "project_urls": {
        "Bug Tracker": "https://github.com/eclipse-cyclonedds/cyclonedds-python/issues",
        "Documentation": "https://cyclonedds.io/docs",
        "Homepage": "https://cyclonedds.io",
        "Source Code": "https://github.com/eclipse-cyclonedds/cyclonedds-python"
    },
    "split_keywords": [
        "eclipse",
        "cyclone",
        "dds",
        "pub",
        "sub",
        "pubsub",
        "iot",
        "cyclonedds",
        "cdr",
        "omg",
        "idl",
        "middleware",
        "ros"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21051ee265d561c90582bb1126b394be09cee11197e6a780f29f6bcb143484b2",
                "md5": "02cb1ad37b99e6a3ca82b614e0b8d264",
                "sha256": "d44bd2312a243a99a08b220c059a1b2647c6089740dcb1f5e9fde28f04fb1098"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02cb1ad37b99e6a3ca82b614e0b8d264",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 862435,
            "upload_time": "2023-09-07T00:33:49",
            "upload_time_iso_8601": "2023-09-07T00:33:49.244698Z",
            "url": "https://files.pythonhosted.org/packages/21/05/1ee265d561c90582bb1126b394be09cee11197e6a780f29f6bcb143484b2/cyclonedds_nightly-2023.9.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "477d3bf0a0752b6aedb720f01a689e34767201fd40285cdab28dbd1800dc7f14",
                "md5": "7208ea79f52091e6572a663d4afa062e",
                "sha256": "7e5e13d4d33b5ca279c51f8d9bd0b3565719addad27b8e17b1daab1fd5c453e9"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7208ea79f52091e6572a663d4afa062e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 795588,
            "upload_time": "2023-09-07T00:33:51",
            "upload_time_iso_8601": "2023-09-07T00:33:51.093112Z",
            "url": "https://files.pythonhosted.org/packages/47/7d/3bf0a0752b6aedb720f01a689e34767201fd40285cdab28dbd1800dc7f14/cyclonedds_nightly-2023.9.7-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62ca63d8f8dd94466a91b75e01adc9930e707e3e679554308aa110b2c977e037",
                "md5": "98b7afcd22a7d84d1748081a7e188a93",
                "sha256": "81fc3e90c20596711ef556d0285eb41f5cb8f0a1bb7e9183d993a0d5a24fe25c"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98b7afcd22a7d84d1748081a7e188a93",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6617816,
            "upload_time": "2023-09-07T00:33:53",
            "upload_time_iso_8601": "2023-09-07T00:33:53.934949Z",
            "url": "https://files.pythonhosted.org/packages/62/ca/63d8f8dd94466a91b75e01adc9930e707e3e679554308aa110b2c977e037/cyclonedds_nightly-2023.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9aa6e5d8ec0667afb1c9688d3986fc355a88a6bc07b5d5baf6b8b95362b388e9",
                "md5": "ff58e7d4120c81121002f54fd7dadab6",
                "sha256": "3cbdbfc6f957e8293dbd63c20afba35dad7e28bc2de711cf08e4c3857d322581"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff58e7d4120c81121002f54fd7dadab6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6592628,
            "upload_time": "2023-09-07T00:33:55",
            "upload_time_iso_8601": "2023-09-07T00:33:55.809881Z",
            "url": "https://files.pythonhosted.org/packages/9a/a6/e5d8ec0667afb1c9688d3986fc355a88a6bc07b5d5baf6b8b95362b388e9/cyclonedds_nightly-2023.9.7-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87897a821580991dc01e8fa3f07e8dcd439f3630dce863e03012f1f2c92a8334",
                "md5": "c45452d95f57a5b4813e10267f3931e2",
                "sha256": "72b7a7861cb2d1f2b9de3068e3d3b5afca37c782c6eff318a732e281384b762e"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c45452d95f57a5b4813e10267f3931e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2282366,
            "upload_time": "2023-09-07T00:33:57",
            "upload_time_iso_8601": "2023-09-07T00:33:57.798456Z",
            "url": "https://files.pythonhosted.org/packages/87/89/7a821580991dc01e8fa3f07e8dcd439f3630dce863e03012f1f2c92a8334/cyclonedds_nightly-2023.9.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed948c86ab15cbe76134258d5650a8d6b7b04a7543ca0968b248b98bfad9ea76",
                "md5": "4e48d4141c14a1cb9bd6a95617191283",
                "sha256": "c102ec03cab33f9182a915e2f94b2054e8dec060324ce44ea5c53b68c8131c46"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e48d4141c14a1cb9bd6a95617191283",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 862300,
            "upload_time": "2023-09-07T00:33:59",
            "upload_time_iso_8601": "2023-09-07T00:33:59.599247Z",
            "url": "https://files.pythonhosted.org/packages/ed/94/8c86ab15cbe76134258d5650a8d6b7b04a7543ca0968b248b98bfad9ea76/cyclonedds_nightly-2023.9.7-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bae4a783e440b1c0cca08041385822376b3485f82b0719637f1838d3fe06f8e1",
                "md5": "e149a72c1957aedbf27789fc60c6d696",
                "sha256": "b6cab80eb25fd5200bcb2d558d0fe0fab579b946744a98958b868c6487ffd22d"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e149a72c1957aedbf27789fc60c6d696",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6617807,
            "upload_time": "2023-09-07T00:34:01",
            "upload_time_iso_8601": "2023-09-07T00:34:01.696799Z",
            "url": "https://files.pythonhosted.org/packages/ba/e4/a783e440b1c0cca08041385822376b3485f82b0719637f1838d3fe06f8e1/cyclonedds_nightly-2023.9.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bafb0e41dc8341ccc401a7d8b3ee7ceb67b444f65ca201e5c82e64882e41995",
                "md5": "a647e8fef98462f2d945566a9657fad8",
                "sha256": "622135d68562659e0bf6c2bf813dbad3e958f497e47f251a54d35da27ca229cc"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a647e8fef98462f2d945566a9657fad8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6592189,
            "upload_time": "2023-09-07T00:34:04",
            "upload_time_iso_8601": "2023-09-07T00:34:04.480709Z",
            "url": "https://files.pythonhosted.org/packages/5b/af/b0e41dc8341ccc401a7d8b3ee7ceb67b444f65ca201e5c82e64882e41995/cyclonedds_nightly-2023.9.7-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0051a3d2e1be21790566eb80e4a5b32f2fe095546243d60d556f67aa209b349",
                "md5": "40a075885531dc9344a3640456ab5d88",
                "sha256": "e5335ebea07b603240a2223009f1b8633c446594a0cd0cf684b3c0fcdbb48e3b"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "40a075885531dc9344a3640456ab5d88",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2282353,
            "upload_time": "2023-09-07T00:34:06",
            "upload_time_iso_8601": "2023-09-07T00:34:06.395362Z",
            "url": "https://files.pythonhosted.org/packages/b0/05/1a3d2e1be21790566eb80e4a5b32f2fe095546243d60d556f67aa209b349/cyclonedds_nightly-2023.9.7-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fabf72fa7c4056059d20f086fcb950b4a70c9312dc70839c204bcc5887486c3b",
                "md5": "08cfe918c8d56fcb3cbc8a21f970c717",
                "sha256": "570e60d25862f8e1ac0f402a06fe4186d2877a4360770983e9773a8b9ed1a7a6"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08cfe918c8d56fcb3cbc8a21f970c717",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 862425,
            "upload_time": "2023-09-07T00:34:07",
            "upload_time_iso_8601": "2023-09-07T00:34:07.908038Z",
            "url": "https://files.pythonhosted.org/packages/fa/bf/72fa7c4056059d20f086fcb950b4a70c9312dc70839c204bcc5887486c3b/cyclonedds_nightly-2023.9.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e380e717ba0523d95d5e642c7341846353bdeab4f84ecdfac0acf9f88c605f9",
                "md5": "d4ef728395e4777e0b6620188e9e0712",
                "sha256": "08b00cb26bd51bb54486bfa579216d66133eb6fc0535d2a4da844fdef8fc7c4d"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d4ef728395e4777e0b6620188e9e0712",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 795586,
            "upload_time": "2023-09-07T00:34:09",
            "upload_time_iso_8601": "2023-09-07T00:34:09.611508Z",
            "url": "https://files.pythonhosted.org/packages/8e/38/0e717ba0523d95d5e642c7341846353bdeab4f84ecdfac0acf9f88c605f9/cyclonedds_nightly-2023.9.7-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf2871f5b4f406b7b0b3abe93a3a3ccd4d96d4108cc496e774da827ee2cdb580",
                "md5": "7efa5e37f8e30fac32dac554d67f8061",
                "sha256": "927a419bddda399ae518dd8145d9e0a2ba5ac1b27731ec86eadc10f4ed693543"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7efa5e37f8e30fac32dac554d67f8061",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6619458,
            "upload_time": "2023-09-07T00:34:12",
            "upload_time_iso_8601": "2023-09-07T00:34:12.104929Z",
            "url": "https://files.pythonhosted.org/packages/bf/28/71f5b4f406b7b0b3abe93a3a3ccd4d96d4108cc496e774da827ee2cdb580/cyclonedds_nightly-2023.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a709ecf3163b03e240a71b1bdaeb35b5426e3436e7d7fca2003b4e1c83cebdec",
                "md5": "afc1805c595d55337376eaddb83127dd",
                "sha256": "584cec312b1d1047878d3a61007e5276e006f57718bcabff630ae58df387a506"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afc1805c595d55337376eaddb83127dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6594267,
            "upload_time": "2023-09-07T00:34:14",
            "upload_time_iso_8601": "2023-09-07T00:34:14.250188Z",
            "url": "https://files.pythonhosted.org/packages/a7/09/ecf3163b03e240a71b1bdaeb35b5426e3436e7d7fca2003b4e1c83cebdec/cyclonedds_nightly-2023.9.7-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad812eea2b1f9b6be52740a0d58605bc3411fb09ab3f04d7ba12ddb6b599fc2e",
                "md5": "8a467b6ba785dbce12f31cc0d3430ac0",
                "sha256": "8418c2f40a15ee7217e03cd0562ae2e43b739546a8d2685bf4c306a4e4f57479"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8a467b6ba785dbce12f31cc0d3430ac0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2282360,
            "upload_time": "2023-09-07T00:34:16",
            "upload_time_iso_8601": "2023-09-07T00:34:16.109281Z",
            "url": "https://files.pythonhosted.org/packages/ad/81/2eea2b1f9b6be52740a0d58605bc3411fb09ab3f04d7ba12ddb6b599fc2e/cyclonedds_nightly-2023.9.7-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "593f4684cca14664df0f4e13efa14f877d9582d600d81fbe39c5bc6a5167af7b",
                "md5": "b6849b526088dd922ca0f2215461311c",
                "sha256": "84895c3bec8b3e7484c661f57ba00855dd69370ff8bd9f4ff9711f5104a72cb5"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6849b526088dd922ca0f2215461311c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 862422,
            "upload_time": "2023-09-07T00:34:18",
            "upload_time_iso_8601": "2023-09-07T00:34:18.350986Z",
            "url": "https://files.pythonhosted.org/packages/59/3f/4684cca14664df0f4e13efa14f877d9582d600d81fbe39c5bc6a5167af7b/cyclonedds_nightly-2023.9.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f1a01f26e52fcb11150f2e35b41c73cdbd36d1dd4bc5c3ec3f1c938cc911160",
                "md5": "187903719bf4ae08203ad8e960c9a7d0",
                "sha256": "e31b130fb2e942814dd70b4a4bd2b4915e64b9679b537e77c7f618468682b030"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "187903719bf4ae08203ad8e960c9a7d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 795579,
            "upload_time": "2023-09-07T00:34:20",
            "upload_time_iso_8601": "2023-09-07T00:34:20.058221Z",
            "url": "https://files.pythonhosted.org/packages/2f/1a/01f26e52fcb11150f2e35b41c73cdbd36d1dd4bc5c3ec3f1c938cc911160/cyclonedds_nightly-2023.9.7-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d45fd51b8a162796cac1d7dac46cd08d699641f07a2f8fab02b6c11221ffe055",
                "md5": "6313a4b997ccc26172ebb825f7395f93",
                "sha256": "4126bf16648461df10b428276e51ea7123ea402a9e1cba7e76358b83d675a69b"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6313a4b997ccc26172ebb825f7395f93",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6617611,
            "upload_time": "2023-09-07T00:34:22",
            "upload_time_iso_8601": "2023-09-07T00:34:22.828641Z",
            "url": "https://files.pythonhosted.org/packages/d4/5f/d51b8a162796cac1d7dac46cd08d699641f07a2f8fab02b6c11221ffe055/cyclonedds_nightly-2023.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e34b2f2abdb0ad34b2452960d51b3b19ca4d17646afe546430af93c1f370f7f",
                "md5": "192e4750490388b2b9cf068df2266966",
                "sha256": "6de2a2854615e05024cce0d79efad3938d518d1ae9127de2fb7cae1a08d2f432"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "192e4750490388b2b9cf068df2266966",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6592430,
            "upload_time": "2023-09-07T00:34:25",
            "upload_time_iso_8601": "2023-09-07T00:34:25.029630Z",
            "url": "https://files.pythonhosted.org/packages/3e/34/b2f2abdb0ad34b2452960d51b3b19ca4d17646afe546430af93c1f370f7f/cyclonedds_nightly-2023.9.7-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ae44d640969dbca4368de9aad06140f446f3f7ff7b7d72d8abe7a0e53856038",
                "md5": "150e08bbed4193cfc8d70e97ca38843c",
                "sha256": "4aa4b63c24765f7bbec4fce816ec75b806ac02782251e834915a152c96bf4bd3"
            },
            "downloads": -1,
            "filename": "cyclonedds_nightly-2023.9.7-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "150e08bbed4193cfc8d70e97ca38843c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2282365,
            "upload_time": "2023-09-07T00:34:27",
            "upload_time_iso_8601": "2023-09-07T00:34:27.223737Z",
            "url": "https://files.pythonhosted.org/packages/7a/e4/4d640969dbca4368de9aad06140f446f3f7ff7b7d72d8abe7a0e53856038/cyclonedds_nightly-2023.9.7-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a885406b0c9da50e763a9e75d6805501ac1d013f92aa0bb313de421a6939ea05",
                "md5": "a06ccc1b5c7c277af722a8b55c0907be",
                "sha256": "176a08ce5ade835adbeff5d30191012b0b005440395f17bf0adeac64373b7422"
            },
            "downloads": -1,
            "filename": "cyclonedds-nightly-2023.9.7.tar.gz",
            "has_sig": false,
            "md5_digest": "a06ccc1b5c7c277af722a8b55c0907be",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 160323,
            "upload_time": "2023-09-07T00:33:45",
            "upload_time_iso_8601": "2023-09-07T00:33:45.729728Z",
            "url": "https://files.pythonhosted.org/packages/a8/85/406b0c9da50e763a9e75d6805501ac1d013f92aa0bb313de421a6939ea05/cyclonedds-nightly-2023.9.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-07 00:33:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "eclipse-cyclonedds",
    "github_project": "cyclonedds-python",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": false,
    "lcname": "cyclonedds-nightly"
}
        
Elapsed time: 0.11924s