サイト パッケージに pywin32 があり、pyttsx は別のフォルダーにあります。これが次のエラーが発生する理由ですか?
import win32api, sys, os
ImportError: DLL load failed: The specified module could not be found
コードは次のとおりです。
import pyttsx
def onStart(name):
print 'starting', name
def onWord(name, location, length):
print 'word', name, location, length
def onEnd(name, completed):
print 'finishing', name, completed
engine = pyttsx.init()
engine.connect('started-utterance', onStart)
engine.connect('started-word', onWord)
engine.connect('finished-utterance', onEnd)
engine.say('The quick brown fox jumped over the lazy dog.')
engine.runAndWait()
ここからhttp://pyttsx.readthedocs.org/en/latest/engine.html#examples
私のpywin32はここからです、
http://sourceforge.net/projects/pywin32/files/pywin32/Build%20219/
Py 2.7 の場合