Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 632 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 632 Bytes

ut-course-schedule-scraper

Python script to scrape the UT course schedule (Work in Progress, incomplete). Requires python3.

Virtual Environment

It is strongly recommended to use a Python virtual environment. To create a virtual env, use the venv feature of python3. Run the command below in the root project directory. Recommended folder name for the virtual environment is env.

python3 -m venv <env-folder-name>

To activate that virtual environment, use the below command:

source <env-folder-name>/bin/activate

After activating, to install the dependencies run

pip3 install -r requirements.txt