Is there a free Python to C translator?

Is there a free Python to C translator? for example, able to translate a lib like lib to quickly resize content (which already depends on some C libs) to C files?

+4
source share
3 answers

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

+5
source

The fantastic PyPy project, whose goal is to "translate the level description into Python of the Python language itself for lower-level languages" , has a C backend . This is one of the lower-level languages ​​that it targets in order to convert programs to C.

+2
source

Source: https://habr.com/ru/post/1306949/


All Articles