tags:

views:

100

answers:

3

Does anyone have experience using python to create a COM object that implements some custom IDLs?

Basically I'd like to know if it's extremely simple to do compared to c++, and if it is do you know of a good tutorial?

+3  A: 

The tutorial you are looking for is in the Python Programming On Win32 book, by Mark Hammond and Andy Robinson. A bit old, and the COM object creation info is distributed across some chapters.

A more recent example, simple COM server using Python, can give you a quick start.

gimel
+2  A: 

There is also comtypes, which allows to access and implement custom interfaces. An article on codeproject has a nice tutorial.

theller
+1  A: 

You should also check Advance COM a free chapter from Python Programming On Win32 mentioned by gimel.

Piotr Czapla