Using C/C++ code in Python
In my last post, I introduced Cython as a tool to speed up your python code by generating a native module. That’s great if you have your solution already prototyped in pure python, but sometimes you may want to take advantage of a pre-existing library that solves your problem. If that library is written in…