Hello everybody.
There's a C library which i'd like to have python bindings for. I havn't
known anything before about how to write python bindings for a C library.
I succeeded now by using distutils to write the first bindings for functions
and similar.
Now, it seems as something is blocking my
You are completely right wihtin this. It's some time i didn't reply, but
i've taken a look on pyrex and swig now which did cost me some time, and
they really make it easier. SWIG provides more possibilities and bindings
for other languages too, though - i must say i've been faster with pyrex,
for s
Hello everybody.
I finally decided to use pyrex for my tasks wrapping and creating new python
objects.
Anyway, i ran into struggles.
I want an array to be passed to a function, so basically i started the
function as follows:
def addToList (self, char *array[]):
This throws an error compi