Note: I know how to cythonize my own Python modules.
So, I have managed to cythonize some of my Python modules, and I've gained some speed. The question is, since cython:
The goal of cython is to be compatible with python, i.e. that you can cythonize any python code and it will work as before. Currently, a large fraction of python code already works. Cython furthermore allows you to optimize parts of your code and compile it into more efficient C code.
Source: What does Cython do with imports?
Now, the biggest issue in my code evolve around re.py, the built-in Python Regular Expression module, despite the fact, that I am per-compiling my regexes.