├── .gitignore ├── .idea ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── lilly-chan.iml ├── misc.xml └── modules.xml ├── Main.py ├── README.md ├── Test.py ├── client_server ├── __init__.py ├── client.py └── server_client.py ├── comparer ├── __init__.py └── comparer.py ├── editor ├── __init__.py └── editor.py ├── group_queue ├── README.md ├── __init__.py ├── groupList.txt ├── groupListWindows.txt ├── history.py ├── person.py └── queue.py ├── input_manager.py ├── lilly.py ├── lilly_runner.py ├── lilly_telegram_runner.py ├── parser_m ├── __init__.py ├── date.py ├── parser.py └── recipe.py ├── questions ├── __init__.py ├── get_question.py └── java │ ├── QaA_java │ ├── java_oop_answers │ └── java_oop_questions │ ├── QaA_javaWindows │ ├── java_oop_answers │ └── java_oop_questions │ └── __init__.py ├── schedule ├── README.md ├── __init__.py ├── day.py ├── schedule_from_file.py └── sh.txt ├── translate ├── README.md ├── __init__.py └── yandex_translate.py └── vk_server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/lilly-chan.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/.idea/lilly-chan.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/Main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/README.md -------------------------------------------------------------------------------- /Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/Test.py -------------------------------------------------------------------------------- /client_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client_server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/client_server/client.py -------------------------------------------------------------------------------- /client_server/server_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/client_server/server_client.py -------------------------------------------------------------------------------- /comparer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparer/comparer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/comparer/comparer.py -------------------------------------------------------------------------------- /editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editor/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/editor/editor.py -------------------------------------------------------------------------------- /group_queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/group_queue/README.md -------------------------------------------------------------------------------- /group_queue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /group_queue/groupList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/group_queue/groupList.txt -------------------------------------------------------------------------------- /group_queue/groupListWindows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/group_queue/groupListWindows.txt -------------------------------------------------------------------------------- /group_queue/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/group_queue/history.py -------------------------------------------------------------------------------- /group_queue/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/group_queue/person.py -------------------------------------------------------------------------------- /group_queue/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/group_queue/queue.py -------------------------------------------------------------------------------- /input_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/input_manager.py -------------------------------------------------------------------------------- /lilly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/lilly.py -------------------------------------------------------------------------------- /lilly_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/lilly_runner.py -------------------------------------------------------------------------------- /lilly_telegram_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/lilly_telegram_runner.py -------------------------------------------------------------------------------- /parser_m/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parser_m/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/parser_m/date.py -------------------------------------------------------------------------------- /parser_m/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/parser_m/parser.py -------------------------------------------------------------------------------- /parser_m/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/parser_m/recipe.py -------------------------------------------------------------------------------- /questions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /questions/get_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/questions/get_question.py -------------------------------------------------------------------------------- /questions/java/QaA_java/java_oop_answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/questions/java/QaA_java/java_oop_answers -------------------------------------------------------------------------------- /questions/java/QaA_java/java_oop_questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/questions/java/QaA_java/java_oop_questions -------------------------------------------------------------------------------- /questions/java/QaA_javaWindows/java_oop_answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/questions/java/QaA_javaWindows/java_oop_answers -------------------------------------------------------------------------------- /questions/java/QaA_javaWindows/java_oop_questions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/questions/java/QaA_javaWindows/java_oop_questions -------------------------------------------------------------------------------- /questions/java/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/schedule/README.md -------------------------------------------------------------------------------- /schedule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schedule/day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/schedule/day.py -------------------------------------------------------------------------------- /schedule/schedule_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/schedule/schedule_from_file.py -------------------------------------------------------------------------------- /schedule/sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/schedule/sh.txt -------------------------------------------------------------------------------- /translate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/translate/README.md -------------------------------------------------------------------------------- /translate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translate/yandex_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/translate/yandex_translate.py -------------------------------------------------------------------------------- /vk_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppLoidx/lilly-chan/HEAD/vk_server.py --------------------------------------------------------------------------------