1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-07-02 22:36:54 +02:00
Files
STARK/test.py

16 lines
338 B
Python
Raw Normal View History

# File for test modules
# Program work only here
# :)
from Command import Command
import SmallTalk
import Text2Speech
2020-06-24 02:12:41 +03:00
archie = Text2Speech.Engine()
archie.generate('Привет', True)
Text2Speech.Speech.getList()[0].speak()
while True:
string = str(input('-> '))
archie.generate( Command.find(string).start() ).speak()