Re: [python-win32] Equivalence of win32com.client under Linux

2017-03-23 Thread Preston Landers
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

Re: [python-win32] Equivalence of win32com.client under Linux

2017-03-23 Thread Graeme Glass
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 >

[python-win32] Equivalence of win32com.client under Linux

2017-03-23 Thread Brahim EL ALLIOUI
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