cyclonedds-python icon indicating copy to clipboard operation
cyclonedds-python copied to clipboard

Results 51 cyclonedds-python issues
Sort by recently updated
recently updated
newest added
trafficstars

The python cyclonedds version is not up-to-date on pypi. https://pypi.org/project/cyclonedds/ still has 0.10.2, but the current version is 0.10.4.

The added test currently fails due to the issue #241.

In order to make all the Cyclone APIs consistent, we should have a standard set of baseline examples that all manifest interoperability. The throughput and ping pong examples from the...

enhancement
good first issue

In the python language, the union type defaults to "keyless = False" https://github.com/eclipse-cyclonedds/cyclonedds-python/blob/48418490c76a15d01615403a2c11f4a10b7ef0e0/cyclonedds/idl/_builder.py#L324 But in C/C++ language, the union type does not have a key.

I'm attempting to install cyclonedds-python with the included binaries per the README. Reproducer Dockerfile: FROM python:3.11-bullseye RUN python3 -m pip install cyclonedds Result: Collecting cyclonedds Downloading cyclonedds-0.10.2.tar.gz (156 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━...

When I use hash annotations to modify the dataclass field, I throw an exception: TypeError: Strings must be encoded before hashing My dataclass is: @dataclass class PersonHashid(idl.IdlStruct, typename="PersonHashid"): name: str...

i use the idlc follow the doc (https://cyclonedds.io/docs/cyclonedds-python/0.10.2/idl.html) `idlc -l py hello.idl` and the content of the hello.idl as follows: ` module HelloWorldData { struct Msg { @key long userID;...

Hi, I'm trying to setup environment and other thins to be able to transfer messages using shared memory. First of all, here is my Image class: Image class ``` @dataclass...

As mention in #198 `idlc -l py` command ignore `-o` option. With this PR we able to set output directory for compiled files. ```idl module HelloWorldData { module Tmp {...

Hello, I have a couple of questions about generation of python files from idl files: 1. How to work with `-o` option? I type `idlc -l py idl/file.idl -o python_files`,...

question