Using numba#

../../_images/numba-blue-horizontal-rgb.svg

| Website | Gthub | Documentation |

numba is another approach to help speeding up Python code using a JIT approach.

This time existing code can just be decorated to apply the technique.

In turn numba will analyze the execution and use llvm based code blocks, that would normally be used for example by a C compiler to create an executable, to replace the original Python code.