Is your Python program too slow, or planning to integrate some C libraries?
Cython is a transcompiler to compile your Python source into C source. Then compile the C source into binary. It implies your program is able to take the benefits of the optimization from compiler. Cython is also a programming language which defined extra features from Python. The extra features make it is easier to access C, even C++ library from Python.
This talk will introduce you to Cython and cover how to set up, the extra features in Cython, examples, and many tips.