Re: [Tutor] receiving string from shell

2012-08-09 Thread Dave Angel
On 08/09/2012 10:24 PM, richard kappler wrote: > The summer of intensive learning continues. Working on subprocess today. > I figured out how to send data out, for example to my festival tts engine: > > [code]response = k.respond(input, "richard") > festivalCmd = '(SayText "%s")' % response > sub

[Tutor] receiving string from shell

2012-08-09 Thread richard kappler
The summer of intensive learning continues. Working on subprocess today. I figured out how to send data out, for example to my festival tts engine: [code]response = k.respond(input, "richard") festivalCmd = '(SayText "%s")' % response subprocess.Popen(['/usr/bin/festival', '-b', festivalCmd])[/c