You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-07-02 22:36:54 +02:00
16 lines
338 B
Python
16 lines
338 B
Python
# File for test modules
|
|
# Program work only here
|
|
# :)
|
|
from Command import Command
|
|
import SmallTalk
|
|
import Text2Speech
|
|
|
|
archie = Text2Speech.Engine()
|
|
|
|
archie.generate('Привет', True)
|
|
Text2Speech.Speech.getList()[0].speak()
|
|
|
|
while True:
|
|
string = str(input('-> '))
|
|
archie.generate( Command.find(string).start() ).speak()
|