You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lobster's original idea is about to write low-level, high-performance extensions of the Python language in Python itself, without knowledge of C/Cython, CAPI, CFFI and else.
In simple terms, you write slow Python code, and Lobster will traspile your Python source code into C, Rust, Go source code. It will neatly collect a tree of all calls, variables, functions, classes, modules, and compile a structural tree for them for the target source code. Some implementations allow for instant embedding extensions into your Python Environment. For example, Rust has Pyo3 and Maturin, and C has CFFI, CAPI, Cython