haggag
haggag

Reputation: 285

How to use COM objects in Python 3.x?

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?

Upvotes: 1

Views: 1971

Answers (1)

Dirk
Dirk

Reputation: 31053

Try the PyWin stuff. It provides (among other things, like direct support for Win32 APIs) a COM bridge for Python and now supports both 2.x and 3.x.
Older downloadable releases are available here. Documentation can be found here.

Upvotes: 2

Related Questions