This is the readme for win32com. Please check out the win32com documentation index
The win32com/test directory contains some interesting scripts (and a new readme.txt). Although these are used for testing, they do show a variety of COM techniques.
win32com.client now has explicit VARIANT objects which can be used in
situations where you need more control over the argument types passed when
calling COM methods. See the documentation on
this object
Important Currency changes
In all builds prior to 204, a COM currency value was returned as a tuple of integers. Working with 2 integers to represent a currency object was a poor choice, but the alternative was never clear. Now Python ships with the decimal module, the alternative has arrived!
Up until build 212, code could set pythoncom.__future_currency__ = True
to force use of the decimal module, with a warning issued otherwise. In
builds 213 and later, the decimal module is unconditionally used when
pythoncon returns you a currency value.
Python 2.3 does not ship with a decimal module. For this reason,
win32com/decimal_23.py is supplied with pywin32. This is a clone of the decimal
module, but will only be used when import decimal
fails. If you
want to use this functionality in your Python 2.3 programs, you should write
something similar to:
try: import decimal except ImportError: import win32com.decimal_23 as decimal val = decimal.Decimal("123.45")
Python only supports "trusted" execution hosts - thus, it will no longer work as an engine inside IE (Python itself no longer has a restricted execution environment). Python continues to work fine as an Active Scripting Engine in all other applications, including Windows Scripting Host, and ASP.
There is also support for Python as an ActiveX Scripting Host.
Active Debugging seems to be fully functional.