What is the fastest way to call C/C++ functions and use C++ classes? There are various methods to do this such as Python Extension Module (Python.h), Cython, SWIG, Boost, and etc.
I've already implement C/C++ functions and C++ classes. Because performance is very important in my project.
So, I want to call C/C++ functions and use C++ classes in python with minimal modification of c/c++ code (or wrapping with no change of existing code). What is the best way?