GT Course Scraper retrieves the latest course registration data from the GT OSCAR Registration platform.
- Use the pip package manager to install requirements
pip install -r requirements.txt
- Create
.env
file and update GT OSCAR Credentials
touch .env
echo "GTID=<GT ID>" >> .env
echo "GTPW=<GT Password>" >> .env
- Update
SEMESTER
,SUBJECT
, andCOURSE_CODE
arguments underscraper.py
# ./scraper.py
semester = "Fall 2020"
subject = "Computer Science"
course_code = "6300"
python main.py <course_code>