├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── README.md ├── main.py ├── record.txt └── result.txt /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boreas618/FDU-Grade-Checker/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boreas618/FDU-Grade-Checker/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boreas618/FDU-Grade-Checker/HEAD/main.py -------------------------------------------------------------------------------- /record.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boreas618/FDU-Grade-Checker/HEAD/record.txt -------------------------------------------------------------------------------- /result.txt: -------------------------------------------------------------------------------- 1 | update 2 | --------------------------------------------------------------------------------