Hello,
I use win32com.client to integrate a C # dll under python. This works well
under windows
>From win32com.client import Dispatch, pythoncom
>From ctypes import cdll
Mydll = cdll.LoadLibrary (spath)
Pythoncom.CoInitialize ()
Zk = Dispatch ("zkemkeeper.ZKEM")
But do not works under unix
What
Are you running this under WINE?
On 22 March 2017 at 19:23, Brahim EL ALLIOUI wrote:
> Hello,
>
> I use win32com.client to integrate a C # dll under python. This works well
> under windows
>
> From win32com.client import Dispatch, pythoncom
> From ctypes import cdll
> Mydll = cdll.LoadLibrary (
I wouldn't say it's 100% impossible - there is a thing called Mono which
allows, subject to numerous limitations, running some .NET code on Linux.
However it certainly wouldn't be the easiest path to take. I guess the
question is why do you feel the need to run this code under Linux.
It would be
Brahim EL ALLIOUI wrote:
>
> I use win32com.client to integrate a C # dll under python. This works
> well under windows
>
> From win32com.client import Dispatch, pythoncom
> From ctypes import cdll
> Mydll = cdll.LoadLibrary (spath)
> Pythoncom.CoInitialize ()
> Zk = Dispatch ("zkemkeeper.ZKEM")
>