I have comtypes 0.6.2 installed on Python 2.6. If I try this:
import comtypes.gen
I get:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
import comtypes.gen
ImportError: No module named gen
Other imports like import comtypes
and import comtypes.client
, however, work fine.
What am I doing wrong?
From the name it seems comtypes.gen
is generated code? If so, do I need certain preparatory steps before importing? I'm not logged in as administrator. Could that cause code generation to fail?
Edit:
The above problem is solved with a reload(comtypes.gen)
(I don't understand how, though). However, now from comtypes.gen import IWshRuntimeLibrary
is not working. This symbol should be part of a generated code. So how do I get this code to be generated?