Hacker News new | ask | show | jobs
by markkitti 907 days ago
Using Cython via pure Python mode seems pretty compelling if you all you need is compilation. Compilability is just the beginning though.
1 comments

Cython is pretty nice, especially for wrappers around C. Julia’s ccall is honestly even better.

Numba is also really nice, and for just compiling against arrays I like it better than Cython. Neither help if you need data structures or abstractions, though.