7

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?

JasonMArcher
  • 13,296
  • 21
  • 55
  • 51
Rella
  • 62,177
  • 103
  • 350
  • 621

3 Answers3

7

Shedskin translates Python code to C++.

Jonas H.
  • 2,137
  • 3
  • 16
  • 21
5

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

pygabriel
  • 9,670
  • 4
  • 39
  • 54
2

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.

Nate Parsons
  • 13,791
  • 13
  • 50
  • 67
Tendayi Mawushe
  • 24,921
  • 6
  • 48
  • 57