Cython for absolute beginners: 30x faster code in two simple steps

Easy Python code compilation for blazingly fast applications

Mike Huls
Towards Data Science
7 min readMay 22, 2022

--

Let’s speed up our code (image by Abed Ismail on Unsplash)

Python is very easy to work with; clear syntax, the interpreter and duck-typing allow you to develop very quickly. There are some downsides though: if you don’t have to adhere to a strict syntax, then Python has to do some extra work to get your code…

--

--