Hacker News new | ask | show | jobs
by LarsDu88 1286 days ago
Do people not know about numba which unlike this project is FOSS and integrates with numpy???
5 comments

And Numba is actually CPython, unlike this which is just "Python-like".

There's also Nuitka as yet another alternative.

Or you're going to use a "Python-like" compiled language, consider using Nim.

Doesn't it require you to annotate every function if you want to compile to a binary? That makes it more like Cython than this. https://numba.readthedocs.io/en/stable/user/pycc.html#overvi...
Numba doesn't market itself very well.
For context, Numba also uses the LLVM and it works with Python code via decorators.
Does it make sense to use Numba with Django / Flask / FastApi?
If you're trying to do intense numerical computations on the backend...