Noob-Ready Cython Tutorials

Posted by spearfire on Stack Overflow See other posts from Stack Overflow or by spearfire
Published on 2009-10-17T12:33:59Z Indexed on 2010/04/06 3:23 UTC
Read the original article Hit count: 526

Filed under:
|
|
|

I know a bunch of scripting languages, (python, ruby, lua, php) but I don't know any compiled languages like C/C++ , I wanted to try and speed up some python code using cython, which is essentially a python -> C compiler, aimed at creating C extensions for python. Basically you code in a stricter version of python which compiles into C -> native code.

here's the problem, I don't know C, yet the cython documentation is aimed at people who obviously already know C (nothing is explained, only presented), and is of no help to me, I need to know if there are any good cython tutorials aimed at python programmers, or if I'm gonna have to learn C before I learn Cython.

bear in mind I'm a competent python programmer, i would much rather learn cython from the perspective of the language I'm already good at, rather than learn a whole new language in order to learn cython.

1) PLEASE don't recommend psyco

edit: ANY information that will help understand the oficial cython docs is useful information

© Stack Overflow or respective owner

Related posts about cython

Related posts about python