NOTE: This is outdated, take a look at this instead. It sends messages to a Discord WebHook
- Install Python
- Create venv with
python -m venv venv - Install deps with
pip install -r requirements.txt - Edit
course_and_sections.py'ssubjectsarray to include the subjects you want to track - Run
python course_and_sections.py, this will generate intermediate files - Create a file called
mycourses.json, and put a list of courses you wanna track there. Example:
[
"CS 10100",
"CS 10200"
]- If you wanna use Pushover, create a
tokens.jsonfile and put your app and ueer tokens there. Example:
{
"pushover-app": "app_token_here",
"pushover-user": "user_token_here"
}- Run
python monitor_courses.py, this will check for changes and send you a notification if there is one. It will also create atemp.jsonfile which contains links to the page where you can check course availabilities.