├── .gitignore ├── Procfile ├── data ├── answers.txt ├── answers_extra.txt ├── command_kak_answer.txt ├── command_sved_answer.txt ├── description.txt ├── donation_ask_message.txt ├── korni_dictionary.csv └── list_of_commands.txt ├── korni.py ├── old_korni.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 korni.py -------------------------------------------------------------------------------- /data/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/data/answers.txt -------------------------------------------------------------------------------- /data/answers_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/data/answers_extra.txt -------------------------------------------------------------------------------- /data/command_kak_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/data/command_kak_answer.txt -------------------------------------------------------------------------------- /data/command_sved_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/data/command_sved_answer.txt -------------------------------------------------------------------------------- /data/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/data/description.txt -------------------------------------------------------------------------------- /data/donation_ask_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/data/donation_ask_message.txt -------------------------------------------------------------------------------- /data/korni_dictionary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/data/korni_dictionary.csv -------------------------------------------------------------------------------- /data/list_of_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/data/list_of_commands.txt -------------------------------------------------------------------------------- /korni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/korni.py -------------------------------------------------------------------------------- /old_korni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/old_korni.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griever-gf/korni_russkogo/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.8 --------------------------------------------------------------------------------