Python to C converter / interpreter

What are the various tools for converting Python scripts to C. I mainly look at the speed of such tools / converter / interpreter.

Thanks, -J

+5
source share
3 answers

cython is what you are looking for http://www.cython.org/

+7
source

Mark Dufour Shedskin is an interesting alternative that can parse a large subset of python and translate it into C ++. The project also has a really good blog.

+3
source

All Articles