The repository contains Python scripts that produce data dumps for different types of datasets.
- Course data from Schedge
- NYU subreddit data
- Creating virtual environment
python3 -m venv env
Then start it by:
source env/bin/activate
- Installing dependencies
python -m pip install requests
pip install yapf // code formatter
- To get Schedge data, run:
python3 schedge.py --sem -year
- Before committing, please format your code:
yapf [FILE_NAME] -i