Cython



Website: cython.org


Cython () is a superset of the programming language Python, which allows developers to write Python code (with optional, C-inspired syntax extensions) that yields performance comparable to that of C.Cython is a compiled language that is typically used to generate CPython extension modules.

Annotated Python-like code is compiled to C (also usable from e.g. C++) and then automatically wrapped in interface code, producing extension modules that can be loaded and used by regular Python code using the import statement, but with significantly less computational overhead at run time.

Cython also facilitates wrapping independent C or C++ code into python-importable modules.

Cython is written in Python and C and works on Windows, macOS, and Linux, producing C source files compatible with CPython 2.6, 2.7, and 3.3 and later versions.

The Cython source code that Cython compiles (to C) can use both Python 2 and Python 3 syntax, defaulting to Python 2 syntax in Cython 0.x (and Python 3 syntax in Cython 3.x, which is currently alpha software).

The default can be overridden (e.g. in source code comment) to Python 3 (or 2) syntax.

Since Python 3 syntax has changed in recent versions, Cython may not be up to date with latest addition.

Cython has “native support for most of the C++ language” and “compiles almost all existing Python code”.Cython 3.0.0 was released on 17 July 2023.