diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..952646f --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +__pycache__ +audio/* +Text2Speech/tts-gc-key.json +test.py diff --git a/test.py b/test.py deleted file mode 100644 index d522d16..0000000 --- a/test.py +++ /dev/null @@ -1,15 +0,0 @@ -# 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()