Tagged Questions
The pycxx tag has no wiki summary.
2
votes
2answers
564 views
Creating an inheritable Python type with PyCxx
A friend and I have been toying around with various Python C++ wrappers lately, trying to find one that meets the needs of both some professional and hobby projects. We've both honed in on PyCxx as a ...
2
votes
1answer
342 views
Python cannot create instances
I am trying to create a simple Python extension using [PyCXX]. And I'm compiling against my Python 2.5 installation.
My goal is to be able to do the following in Python:
import Cats
kitty = ...
1
vote
0answers
88 views
How to access numpy array within PyCXX
I would like to convert numpy array to some double* or stl vector on the c++ side. I'm actually using PyCXX for this and I can't figure out the way to access the data.
I'm currently able to access ...