I want to write a hybrid application which uses python as GUI component, and C++ module as background services.
I know how to program with Python, and C++, but I don’t find a mature/nice way to make them work together smoothly. Could you guys shed some light on this for me? A good document/tutorial is also very appreciated.
I like to use cython for writing glue code between those two worlds, or if I want stronger separation for any reason I like the ctypes approach.