├── .github └── workflows │ └── docker.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── INSTALL.md ├── LICENSE ├── README.md ├── app.py ├── img ├── logo.png └── remove.png ├── language ├── en.py └── fr.py ├── requirements.txt ├── src ├── Embed.py ├── call.py ├── convert.py ├── data.py ├── settings.py └── tools.py └── test.py /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | src/test.py 2 | guild.json 3 | .idea 4 | __pycache__/ 5 | /database 6 | *log -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/app.py -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/img/remove.png -------------------------------------------------------------------------------- /language/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/language/en.py -------------------------------------------------------------------------------- /language/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/language/fr.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | discord.py~=2.0 -------------------------------------------------------------------------------- /src/Embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/src/Embed.py -------------------------------------------------------------------------------- /src/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/src/call.py -------------------------------------------------------------------------------- /src/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/src/convert.py -------------------------------------------------------------------------------- /src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/src/data.py -------------------------------------------------------------------------------- /src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/src/settings.py -------------------------------------------------------------------------------- /src/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/src/tools.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Renaud-Dov/CheckStudents/HEAD/test.py --------------------------------------------------------------------------------