Re: COM / .NET

2011-10-20 Thread Gregory Ewing
Tim Golden wrote: You have a few choices in this regard: Also it's reportedly possible to register a .NET assembly as a COM library and use it that way. -- Greg -- http://mail.python.org/mailman/listinfo/python-list

Re: COM / .NET

2011-10-20 Thread Uffe Kousgaard
"Tim Golden" wrote in message news:mailman.2075.1319100141.27778.python-l...@python.org... > > You have a few choices in this regard: Thanks for a detailed reply. We'll start looking at [1] and [3]. -- http://mail.python.org/mailman/listinfo/python-list

Re: COM / .NET

2011-10-20 Thread Tim Golden
On 20/10/2011 09:06, Uffe Kousgaard wrote: Is python able to access COM libraries or .NET assemblies? If both, which is the easist or most popular? You have a few choices in this regard: * CPython can access COM objects either via the pywin32 extensions[1] or via comtypes[2]. The former is mai