What are various tools to convert Python scripts to C. I am mainly looking at speed of such tools/converter/interpreter.
Thanks, -J
What are various tools to convert Python scripts to C. I am mainly looking at speed of such tools/converter/interpreter.
Thanks, -J
cython is what you are looking for http://www.cython.org/
Mark Dufour's Shedskin is an interesting alternative, that can parse a large subset of python, and translate it to C++. The project also has a really good blog
You could use Pypy to translate a subset of Python language to C.