Follow these steps to set up and run the project on your local machine.
- Python must be installed on your system.
👉 Download Python here
-
Download the project
Click the green "Code" button, download the ZIP file, and extract it to any folder. -
Install dependencies
Open a terminal in the extracted folder and run:pip install -r requirements.txt
-
Download your grade report
Go to your student portal, navigate to Grade Reports → By Curriculum, and click Print to download the PDF file. -
Move the PDF file
Copy the downloaded PDF to the same folder where the script is located. -
Update the file path in
main.py
Openmain.py
and set the file path to the name of your downloaded PDF:# Path to your PDF file pdf_path = "your_file_name.pdf"
For example:
# Path to your PDF file pdf_path = "GradeReportByCurriculumXX-XXXXX-X.pdf"
-
Run the application
In the terminal, start the app by running:python main.py
Or, if needed:
python3 main.py