Speed up Python with native modules using Cython
Todays post is all about one of the tools to speed up your Python code. Cython can be installed with pip: pip install cython What the heck is Cython anyway? From one point of view, Cython is a language that is very close to a superset of Python syntax. That is to say, most Python…