How do I create extensions to Python in C?

Thomas Thiele thiele at muc.das-werk.de
Tue May 23 15:07:24 EDT 2000


>

Do you want to call standart C-functions (like system calls)? Forget it, you
don't need it!
All these functionality are available in python. The pythonfunctions are
straight forward calls to the c-functions.

To call other c-function is a little bit more difficult. You have to build your
own pythonmodul (written in c, shared library).
But this is to complicated to write it in a few lines. If you're interested,
please mail me. I have a prototype.

Thomas





More information about the Python-list mailing list