cython

Compiler for writing C extensions for Python language

brewmacoslinux
Try with needOr install directly
Source

About

Compiler for writing C extensions for the Python language

Commands

cythoncythonize

Examples

Compile a Cython module to C code$ cython mymodule.pyx
Compile and build extension in one step$ cythonize -i mymodule.pyx
Compile multiple Cython files with optimizations$ cython -O mymodule.pyx anothermodule.pyx