Skip to content

Commit

Permalink
work on readme
Browse files Browse the repository at this point in the history
  • Loading branch information
fijal committed Dec 4, 2014
1 parent 1ec8498 commit 33041e5
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
jitpy
=====

Library to embed PyPy into CPython
Library to embed PyPy into CPython. See
[documentation](http://jitpy.readthedocs.org) 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.

0 comments on commit 33041e5

Please sign in to comment.