Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am EE not so familiar with Python culture and new to it.My question is regarding using Cython for converting Python to C.


Background :

I have huge python modules(+8000 lines) .They basically have tons of functions for interacting with a hardware platform via serial port by reading and writing to hardware registers.They are not numerical algorithms. So application is just reading/writing to hardware registers/memory. I use these libraries to write custom scripts.Eventually, I need to move all these stuff to be run in an embedded processor on my hardware to have finer control,then I just kick off the event from PC and the rest is in hardware.So I need to convert them to C.If I can have my scripts be converted to C by an automatic tool, that would save me a huge time. This is why I got attracted to Cython. Efficiency is not important my codes are not number crunchers. But generated code should be relatively small to fit in my limited memory.(few hundreds of Kilobytes)


Question :

1- Can I use Cython as converter for my custom python scripts to C ? My guess is yes.

2- Can I use these .c files to be run in my hardware ? My guess is not since I have to have Cython in my hardware as well for them to run.But if just creates some .c files , I can go through and make it standalone since code is not using much of features of Python it just use it as a fast to implement script.

share|improve this question

2 Answers

up vote 19 down vote accepted

What you want is PyPy, specifically it's translation toolchain, NOT the PyPy Python interpreter.

It lets you translate RPython, a subset of the Python language, into C. If you really aren't using many Python language features or libraries, this may be your best bet.

PyPy is mostly known as an alternative Python implementation, but it is also a set of tools for compiling dynamic languages into various forms.

This is what allows the PyPy implementation of Python, written in Python, to be compiled to machine code.

If C++ is available, Nuitka is a Python to C++ compiler that works for regular Python, not just RPython (which is what shedskin and PyPy use).

Also, I might as well answer your questions:

  1. Yes, I believe this is possible.
  2. You don't need Cython, however, you do need libpython. You may feel like it doesn't use that many Python features, but I think if you try this you'll find it's not true -- you won't be able to separate your program from it's dependence on libpython easily at all.
share|improve this answer
So It's a translator that gives you .c ? I thought is specific implementation of python for making it fast.Being fast is not my concern. – Arash Aug 18 '11 at 19:26
Read the answer more closely. PyPy is two things, an implementation of Python, and a Python translator / compiler. You don't want the first, you want the second. The translation toolchain I linked to has details on what you want. – agf Aug 18 '11 at 19:30
I updated my post to add direct answers to your questions. – agf Aug 19 '11 at 0:37
@agf, I cannot figure out how to translate a python program (say hello.py containing one line i=1; print hello, 1) to a c source file that I can look at in an editor and compile with gcc. I'd appreciate if you could help me with an example. – Kyss Tao Mar 21 '12 at 3:32
@KyssTao Take a look at doc.pypy.org/en/latest/getting-started-dev.html – agf Mar 21 '12 at 3:41
show 2 more comments

If C++ is available for that embedded platform, there is shed skin, it converts python into c++.

share|improve this answer
I heard about ShedSkin but I cant trust it.Cython seems to be more robust and widely used with very positive reviews. – Arash Aug 18 '11 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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