我的代码是:

from win32com.shell import shellcon
from win32com.shell.shell import ShellExecuteEx


它在IDLE中工作正常,但是在我执行了exe文件后,我得到了错误:

File "Myfile.py", line 1, in <module>
ImportError: No module named shell


为何py2exe无法导入win32com.shell

最佳答案

以下内容可能会对您有所帮助:py2exe.org win32com.shell

该链接将问题描述为win32com执行“魔术”以允许在运行时加载COM扩展。这些扩展位于站点软件包的win32comext目录中,无法直接加载。 win32com的__path__变量被修改为指向win32com和win32comext。将此运行时间更改为__path__会使py2exe的modulefinder跳闸,因此必须提前告知它。

以下是代码,可能是来自SpamBayes的源代码,该代码处理了相同的问题,因此类似的方法可能对您有用:

# ...
# ModuleFinder can't handle runtime changes to __path__, but win32com uses them
try:
    # py2exe 0.6.4 introduced a replacement modulefinder.
    # This means we have to add package paths there, not to the built-in
    # one.  If this new modulefinder gets integrated into Python, then
    # we might be able to revert this some day.
    # if this doesn't work, try import modulefinder
    try:
        import py2exe.mf as modulefinder
    except ImportError:
        import modulefinder
    import win32com, sys
    for p in win32com.__path__[1:]:
        modulefinder.AddPackagePath("win32com", p)
    for extra in ["win32com.shell"]: #,"win32com.mapi"
        __import__(extra)
        m = sys.modules[extra]
        for p in m.__path__[1:]:
            modulefinder.AddPackagePath(extra, p)
except ImportError:
    # no build path setup, no worries.
    pass

from distutils.core import setup
import py2exe
# The rest of the setup file.

10-07 18:37