python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to export data from a C++ object wrapped with pybind11 to a pandas DataFrame with minimal amount of copies?
I have a C++ class Plants that contains data in form of nested/linked/... objects.
This class is accessible in python via pybind11.
I want to access some information of the contained data in "tab...
Michael Kopp
Votes: 0
Answers: 0
embedded python using pybind11 in c++ class: how to call member function of c++ class from python
I've a class with a method (MyClass::methodWithPy) that can be customized by some python script using embedded pybind11, which so far works.
Inside the python script I need to somehow call methods of ...
goaran
Votes: 0
Answers: 1
Pybind11 Shared Library Visibility Issues
We are trying to compile some c++ code into a shared library with pybind11. This shared library does not call python functions, but is instead called from a python script. Then we want to create an en...
Nick.T
Votes: 0
Answers: 1
gdb corefile generated by C++ segfault and pybinder with no symbols
context: I have a program which runs on server, which segfaults several times a month. The program is a python program which uses some library implemented in C++ and exposed by pybinder.
I am able to ...
Tinyden
Votes: 0
Answers: 1