Size: 1685
Comment: How to find out the typelibs magic numbers
|
Size: 1695
Comment: syntax coloring is so cool...
|
Deletions are marked like this. | Additions are marked like this. |
Line 15: | Line 15: |
#!python |
Description
Typically when dealing with 3rd party COM libraries (eg. Office), you make use of the constants defined in that library. Once makepy creates the typelib for you, using these constants is normally easy in python. You only need to import win32com.client.constants to access them.
However, since these typelibs aren't really imported, py2exe needs to be told to include them in your setup-script.
Solution 1
Here's how I'm importing the typelib for Excel XP:
setup.py:
So, as you can see, it's an option in the options dictionary, containing a list of the typelibs you need. Each typelib being represtented as a tuple of (CLSID, LCID, MajorVersion, MinorVersion) - all of which numbers you can find in the typelib file itself.
You can print out these magic numbers by running the makepy script with the -i command line option.
Solution 2
That solution was the easier one for py2exe 0.4, but it still works:
cd \python23\Lib\site-packages\win32com\client python makepy.py -o {MyProjectDirectory}\OLE_Excel10.py
within the software change:
(taken from M. Hammonds documentation "Quick Start to Client side COM and Python")
to