Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 386 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 386 Bytes

jitpy

Library to embed PyPy into CPython. See documentation for more examples.

The simplest example:

from jitpy.wrapper import jittify

@jittify([int, float], float)
def func(count, no):
    s = 0
    for i in range(count):
       s += no
    return s

func(100000000, 1.2)

Runs about 20x faster.

MIT Licensed.