4 Compile a Python script into an executable that embeds CPython and run it.
5 Requires CPython to be built as a shared library ('libpythonX.Y').
9 python cythonrun somefile.py [ARGS]
12 from Cython
.Build
.BuildExecutable
import build
, build_and_run
14 if __name__
== '__main__':
16 build_and_run(sys
.argv
[1:])