├── .gitattributes ├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── config.json ├── dict.json ├── lingualeo.txt ├── main.pyw ├── src ├── GUI.py ├── GUI_config.py ├── __init__.py ├── app.py ├── config.py ├── dictionary.py ├── edit_word_dialog.py ├── error_dialog.py ├── global_stat.py ├── import_dict.py ├── lesson.py ├── lesson_words.py ├── loc_res.py ├── oper_factory.py ├── operation.py ├── operation_find_in_web.py ├── singleton.py ├── statistic.py ├── statistic_dialog.py ├── tkintertable │ ├── README │ ├── TableModels.py │ ├── Table_images.py │ ├── Tables.py │ └── __init__.py ├── top_dialog.py └── word.py └── test ├── README.md ├── pep8.cfg ├── windows_check_syntax.bat └── windows_fix_syntax.bat /.gitattributes: -------------------------------------------------------------------------------- 1 | main.pyw text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/config.json -------------------------------------------------------------------------------- /dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/dict.json -------------------------------------------------------------------------------- /lingualeo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/lingualeo.txt -------------------------------------------------------------------------------- /main.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/main.pyw -------------------------------------------------------------------------------- /src/GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/GUI.py -------------------------------------------------------------------------------- /src/GUI_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/GUI_config.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/app.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/config.py -------------------------------------------------------------------------------- /src/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/dictionary.py -------------------------------------------------------------------------------- /src/edit_word_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/edit_word_dialog.py -------------------------------------------------------------------------------- /src/error_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/error_dialog.py -------------------------------------------------------------------------------- /src/global_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/global_stat.py -------------------------------------------------------------------------------- /src/import_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/import_dict.py -------------------------------------------------------------------------------- /src/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/lesson.py -------------------------------------------------------------------------------- /src/lesson_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/lesson_words.py -------------------------------------------------------------------------------- /src/loc_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/loc_res.py -------------------------------------------------------------------------------- /src/oper_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/oper_factory.py -------------------------------------------------------------------------------- /src/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/operation.py -------------------------------------------------------------------------------- /src/operation_find_in_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/operation_find_in_web.py -------------------------------------------------------------------------------- /src/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/singleton.py -------------------------------------------------------------------------------- /src/statistic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/statistic.py -------------------------------------------------------------------------------- /src/statistic_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/statistic_dialog.py -------------------------------------------------------------------------------- /src/tkintertable/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/tkintertable/README -------------------------------------------------------------------------------- /src/tkintertable/TableModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/tkintertable/TableModels.py -------------------------------------------------------------------------------- /src/tkintertable/Table_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/tkintertable/Table_images.py -------------------------------------------------------------------------------- /src/tkintertable/Tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/tkintertable/Tables.py -------------------------------------------------------------------------------- /src/tkintertable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/tkintertable/__init__.py -------------------------------------------------------------------------------- /src/top_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/top_dialog.py -------------------------------------------------------------------------------- /src/word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/src/word.py -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/test/README.md -------------------------------------------------------------------------------- /test/pep8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/test/pep8.cfg -------------------------------------------------------------------------------- /test/windows_check_syntax.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/test/windows_check_syntax.bat -------------------------------------------------------------------------------- /test/windows_fix_syntax.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReanGD/LearningEnglish/HEAD/test/windows_fix_syntax.bat --------------------------------------------------------------------------------