Is there any free Python to C translator? for example capable to translate such lib as lib for Fast content-aware image resizing (which already depends on some C libs) to C files?

link|improve this question

2  
C doesn't have classes. – Mike Graham Apr 14 '10 at 16:34
@Mike: It is perfectly possible to program in a OOP fashion in C. So that is not really relevant. – kigurai Apr 15 '10 at 7:34
1  
@kigurai, It was relevant in the original edit because it was phrased like "classes" was a language feature. – Mike Graham Apr 15 '10 at 15:17
feedback

3 Answers

up vote 3 down vote accepted

I think that cython is what you're looking for http://www.cython.org/

link|improve this answer
feedback

The fantastic PyPy project which aims to: "translate a Python-level description of the Python language itself to lower level languages", has a C backend. That is one of the lower level languages it aims to translate programs to is C.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.