On 10 Sep., 09:57, Anders Eriksson <[EMAIL PROTECTED]> wrote: > Hello, > > I have a C++ library compiled as Windows DLL's. It consists of 32 .h and 1 > .lib and 1 .dll files. I don't have the source code. > > How can I create a Python module from these files?
Do you need the full library including classes or just some functions ? You could write a wrapper in C around the lib and use f2py or ctypes to call your wrapper from python. But that does not work if you want to expose classes. Greetings, Uwe -- http://mail.python.org/mailman/listinfo/python-list