Somewhat fancy voice command recognition software
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
12345678910 |
- #!/usr/bin/env python3
- # This is part of Kaylee
- # -- this code is licensed GPLv3
- # Copyright 2015-2017 Clayton G. Hobbs
- # Portions Copyright 2013 Jezra
-
- from kayleevc import kaylee
-
- if __name__ == '__main__':
- kaylee.run()
|