Advanced

Cython & Python Extensions

Cython allows Python code to run at near-C speed.

Why Use Cython?

Basic Cython Example

cpdef int add(int a, int b):
    return a + b