├── .gitignore ├── README.md ├── VoiceReply.py ├── __init__.py └── config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/VoiceReply/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/VoiceReply/HEAD/README.md -------------------------------------------------------------------------------- /VoiceReply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/VoiceReply/HEAD/VoiceReply.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from .VoiceReply import * -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/VoiceReply/HEAD/config.json --------------------------------------------------------------------------------