In this paper, we present an overview of the
Cython language and the Cython compiler in
several examples. We give guidelines on where
Cython can be expected to provide signifi-
cantly higher performance than pure Python and
NumPy code, and where NumPy is a good choice
in its own right. We further show how the Cython
compiler speeds up Python code, and how it can
be used to interact directly with C code. We also
cover Fwrap, a close relative of Cython. Fwrap
is used for automatically creating fast wrappers
around Fortran code to make it callable from C,
Cython, and Python.
Cython is based on Pyrex
[Pyrex]
by Greg Ew-
ing. It’s been one of the more friendly “forks” in
open source, and we are thankful for Greg’s co-
operation. The two projects have somewhat dif-
ferent goals. Pyrex aims to be a “smooth blend
of Python and C”, while Cython focuses more
on preserving Python semantics where it can.
Cython also contains some features for numeri-
cal computation that are not found in Pyrex (in