Nowhere near polished enough to make it into a plugin, let me say that
recalculating the following worksheet brought words to my ears:
import pyttsx
build pyttsx.init() as speaker:
speaker.say('Sally sells seashells by the seashore.')
speaker.say('The quick brown fox jumped over the lazy dog.')
speaker.runAndWait()
When everything works well enough, just copying pytts module into a
notebook would do the trick.
Kind regards,
ack
Also, the 'build' seems necessary, because otherwise Reinteract will
hang evaluating `speaker.runAndWait()'...
-ack