Discussion:
[python-win32] ImportError: No module named win32com.shell
agnel varghese
2011-03-21 09:32:02 UTC
Permalink
Hi ,

I am trying to control a GUI based application through one python script
.Getting below error while running it.Any ideas how to resolve it
ImportError: No module named win32com.shell

Thanks,
Agnel.

$ pythonw ssc.py scanlist -v
Traceback (most recent call last):
File "ssc.py", line 52, in <module>
import SSCConfig
File "c:\ssc_auto\lib\SSCConfig.py", line 103, in <module>
import PathFinder
File "c:\ssc_auto\lib\PathFinder.py", line 11, in <module>
from win32com.shell import shellcon, shell
ImportError: No module named win32com.shell
ngwc-***@cavium-wireless /cygdrive/c/ssc_auto
$
agnel varghese
2011-03-21 10:16:27 UTC
Permalink
Hi ,

I am trying to control a GUI based application through one python script
.Getting below error while running it.Any ideas how to resolve it
ImportError: No module named win32com.shell

Thanks,
Agnel.

$ pythonw ssc.py scanlist -v
Traceback (most recent call last):
File "ssc.py", line 52, in <module>
import SSCConfig
File "c:\ssc_auto\lib\SSCConfig.py"
Post by agnel varghese
, line 103, in <module>
import PathFinder
File "c:\ssc_auto\lib\PathFinder.py", line 11, in <module>
from win32com.shell import shellcon, shell
ImportError: No module named win32com.shell
Tim Golden
2011-03-21 14:07:12 UTC
Permalink
Post by agnel varghese
Hi ,
I am trying to control a GUI based application through one python script
.Getting below error while running it.Any ideas how to resolve it
ImportError: No module named win32com.shell
You want to install the pywin32 extensions:

http://sourceforge.net/projects/pywin32/files/

TJG

Loading...