├── .DS_Store ├── .github └── workflows │ └── Clock_in.yml ├── .idea ├── .gitignore ├── clockIn_gzhu.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── assets ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png ├── clockIn_lib.py ├── requirements.txt └── test.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/Clock_in.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/.github/workflows/Clock_in.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/clockIn_gzhu.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/.idea/clockIn_gzhu.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/README.md -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/assets/3.png -------------------------------------------------------------------------------- /assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/assets/4.png -------------------------------------------------------------------------------- /assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/assets/5.png -------------------------------------------------------------------------------- /assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/assets/6.png -------------------------------------------------------------------------------- /assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/assets/7.png -------------------------------------------------------------------------------- /clockIn_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/clockIn_lib.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | requests 3 | loguru 4 | func_timeout -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovely-smile/clockIn_gzhu_library/HEAD/test.py --------------------------------------------------------------------------------