├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── img ├── 1.png ├── 10.png ├── 11.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── requirements.txt └── src ├── config.py ├── public.pem ├── send.py ├── sign.py └── startup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | __pycache__/ 3 | .DS_Store 4 | venv/ 5 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/README.md -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/1.png -------------------------------------------------------------------------------- /img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/10.png -------------------------------------------------------------------------------- /img/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/11.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/6.png -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/7.png -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/8.png -------------------------------------------------------------------------------- /img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/img/9.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/src/config.py -------------------------------------------------------------------------------- /src/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/src/public.pem -------------------------------------------------------------------------------- /src/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/src/send.py -------------------------------------------------------------------------------- /src/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/src/sign.py -------------------------------------------------------------------------------- /src/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shirley-Hxn/AutoAttendYuKeTang/HEAD/src/startup.py --------------------------------------------------------------------------------