![](https://secure.gravatar.com/avatar/b8418ef4a132883cfd687658ba01bbc7.jpg?s=120&d=mm&r=g)
Aug. 15, 2007
9:15 a.m.
Ali Alhakim wrote:
I'm quite new to Python and definitely a beginner in implementing Python extensions in C/C++.
You might want to take a look at Pyrex or Cython. Both allow you to write C extensions in a very Python-like language. Both use the same language, but the C code that Cython generates is a lot more efficient.
http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/ http://www.cython.org/
Stefan