tags:

views:

29

answers:

1

I want to access COM objects using Python 3.1, but I can't find a library to support 3.x. Do I need to use some extension or there is something in the standard library?

+1  A: 

Try the PyWin stuff. It provides (among other things, like direct support for Win32 APIs) a COM bridge for Python. To get a full list of downloadable files, select "View all files". The version for Python 3.1 is available from that list. Documentation can be found here.

Dirk
The last version there supports Python 2.6. There is no one for 3.x.
haggag
Edit: added direct link to 3.1 version.
Dirk