├── .gitignore ├── README.md ├── dicts └── Russian │ ├── abbr_dict.txt │ ├── locations_dict.txt │ ├── names_dict.txt │ ├── person_names_dict.txt │ ├── phrase_dict.txt │ └── yo_dict.txt └── tools ├── __init__.py ├── build.py ├── preprocessing ├── dict │ ├── words_muz.py │ ├── words_sre.py │ └── words_zen.py ├── functions.py ├── readme.md ├── rules.py ├── templates.py ├── text_prepare.py └── words_forms.py ├── readme.md ├── rhvoice_config ├── rhvoice_conf_gui.py └── rhvoice_config ├── rhvoice_say ├── rhvoice_say └── rhvoice_say.py ├── scripts ├── __init__.py ├── battary_status.py ├── examples │ ├── check_battery │ │ ├── battery_state.service │ │ ├── battery_state.timer │ │ ├── check_battery.py │ │ └── readme │ └── today_info_openweather.py ├── forismatic_quotes.py ├── greeting.py └── time_utils.py └── test_templates.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .idea 3 | tools/build 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/README.md -------------------------------------------------------------------------------- /dicts/Russian/abbr_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/dicts/Russian/abbr_dict.txt -------------------------------------------------------------------------------- /dicts/Russian/locations_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/dicts/Russian/locations_dict.txt -------------------------------------------------------------------------------- /dicts/Russian/names_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/dicts/Russian/names_dict.txt -------------------------------------------------------------------------------- /dicts/Russian/person_names_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/dicts/Russian/person_names_dict.txt -------------------------------------------------------------------------------- /dicts/Russian/phrase_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/dicts/Russian/phrase_dict.txt -------------------------------------------------------------------------------- /dicts/Russian/yo_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/dicts/Russian/yo_dict.txt -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/build.py -------------------------------------------------------------------------------- /tools/preprocessing/dict/words_muz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/dict/words_muz.py -------------------------------------------------------------------------------- /tools/preprocessing/dict/words_sre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/dict/words_sre.py -------------------------------------------------------------------------------- /tools/preprocessing/dict/words_zen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/dict/words_zen.py -------------------------------------------------------------------------------- /tools/preprocessing/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/functions.py -------------------------------------------------------------------------------- /tools/preprocessing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/readme.md -------------------------------------------------------------------------------- /tools/preprocessing/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/rules.py -------------------------------------------------------------------------------- /tools/preprocessing/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/templates.py -------------------------------------------------------------------------------- /tools/preprocessing/text_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/text_prepare.py -------------------------------------------------------------------------------- /tools/preprocessing/words_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/preprocessing/words_forms.py -------------------------------------------------------------------------------- /tools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/readme.md -------------------------------------------------------------------------------- /tools/rhvoice_config/rhvoice_conf_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/rhvoice_config/rhvoice_conf_gui.py -------------------------------------------------------------------------------- /tools/rhvoice_config/rhvoice_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/rhvoice_config/rhvoice_config -------------------------------------------------------------------------------- /tools/rhvoice_say/rhvoice_say: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/rhvoice_say/rhvoice_say -------------------------------------------------------------------------------- /tools/rhvoice_say/rhvoice_say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/rhvoice_say/rhvoice_say.py -------------------------------------------------------------------------------- /tools/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/__init__.py -------------------------------------------------------------------------------- /tools/scripts/battary_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/battary_status.py -------------------------------------------------------------------------------- /tools/scripts/examples/check_battery/battery_state.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/examples/check_battery/battery_state.service -------------------------------------------------------------------------------- /tools/scripts/examples/check_battery/battery_state.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/examples/check_battery/battery_state.timer -------------------------------------------------------------------------------- /tools/scripts/examples/check_battery/check_battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/examples/check_battery/check_battery.py -------------------------------------------------------------------------------- /tools/scripts/examples/check_battery/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/examples/check_battery/readme -------------------------------------------------------------------------------- /tools/scripts/examples/today_info_openweather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/examples/today_info_openweather.py -------------------------------------------------------------------------------- /tools/scripts/forismatic_quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/forismatic_quotes.py -------------------------------------------------------------------------------- /tools/scripts/greeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/greeting.py -------------------------------------------------------------------------------- /tools/scripts/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/scripts/time_utils.py -------------------------------------------------------------------------------- /tools/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantu5z/RHVoice-dictionary/HEAD/tools/test_templates.py --------------------------------------------------------------------------------