├── .github └── workflows │ └── test.yml ├── .gitignore ├── .idea ├── .gitignore ├── comcigan.py.iml ├── deployment.xml ├── discord.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── Unittests_in_test_search_py.xml └── vcs.xml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.ko.md ├── README.md ├── comcigan ├── __init__.py ├── async_school.py ├── reg.py ├── school.py └── school_new.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── test_school.py └── test_search.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/comcigan.py.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/comcigan.py.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/discord.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Unittests_in_test_search_py.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/runConfigurations/Unittests_in_test_search_py.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | prune test -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/README.md -------------------------------------------------------------------------------- /comcigan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/comcigan/__init__.py -------------------------------------------------------------------------------- /comcigan/async_school.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/comcigan/async_school.py -------------------------------------------------------------------------------- /comcigan/reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/comcigan/reg.py -------------------------------------------------------------------------------- /comcigan/school.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/comcigan/school.py -------------------------------------------------------------------------------- /comcigan/school_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/comcigan/school_new.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | requests 3 | beautifulsoup4 4 | coverage 5 | lxml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/test_school.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/test/test_school.py -------------------------------------------------------------------------------- /test/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coder-Iro/comcigan-py/HEAD/test/test_search.py --------------------------------------------------------------------------------