├── .github └── ISSUE_TEMPLATE │ ├── ----.yml │ └── --bug.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── GR_cookie.png ├── checkin_entrance.png ├── checkin_page.png ├── cookie.png ├── cookies.png ├── devtools.png ├── lib.png └── push_detail.png ├── checkin.py ├── config.py ├── requirements.txt └── sendNotify.py /.github/ISSUE_TEMPLATE/----.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/.github/ISSUE_TEMPLATE/----.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/.github/ISSUE_TEMPLATE/--bug.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/README.md -------------------------------------------------------------------------------- /assets/GR_cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/assets/GR_cookie.png -------------------------------------------------------------------------------- /assets/checkin_entrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/assets/checkin_entrance.png -------------------------------------------------------------------------------- /assets/checkin_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/assets/checkin_page.png -------------------------------------------------------------------------------- /assets/cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/assets/cookie.png -------------------------------------------------------------------------------- /assets/cookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/assets/cookies.png -------------------------------------------------------------------------------- /assets/devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/assets/devtools.png -------------------------------------------------------------------------------- /assets/lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/assets/lib.png -------------------------------------------------------------------------------- /assets/push_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/assets/push_detail.png -------------------------------------------------------------------------------- /checkin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/checkin.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.31.0 2 | -------------------------------------------------------------------------------- /sendNotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaineaAN/GlaDOS_Checkin_ql/HEAD/sendNotify.py --------------------------------------------------------------------------------