Binding C++ library to Python with Cython
Cython module include two parts:
- A definition file (
.pxd
): contain C++ extern declarations that are available to other Cython modules. - An implementation file (
.pyx
).
Cython module include two parts:
.pxd
): contain C++ extern declarations that are available to other Cython modules..pyx
).
Comments