Comment by jitl Comment by jitl 10 months ago 3 replies Copy Link View on Hacker News What’s the difference between this and Cython? I think another comment already asks about shedskin.
Copy Link rich_sasha 10 months ago Next Collapse Comment - Cython relies heavily on the Python runtime. You cannot, for example, make a standalone binary with it. A lot of unoptimized Cython binary is just Python wrapped in C.From a quick glance this seems to genuinely translate into native execution. Reply View | 1 reply Copy Link edscho 10 months ago Parent Collapse Comment - You absolutely can create a standalone binary with Cython: see the `--embed` option [1].[1] https://cython.readthedocs.io/en/stable/src/tutorial/embeddi... Reply View | 0 replies
Copy Link edscho 10 months ago Parent Collapse Comment - You absolutely can create a standalone binary with Cython: see the `--embed` option [1].[1] https://cython.readthedocs.io/en/stable/src/tutorial/embeddi... Reply View | 0 replies
Cython relies heavily on the Python runtime. You cannot, for example, make a standalone binary with it. A lot of unoptimized Cython binary is just Python wrapped in C.
From a quick glance this seems to genuinely translate into native execution.