The website displays MLB news, standings, team rosters and player statistics.
See the live demo at https://mlb.softifacts.com
Show divisional standings and recent news stories.
Show current roster and player stats
Show players based on their roles (eg: hitters, pitchers)
Show player history

Show current statistical leaders (eg: HR, OPS, ERA, Strikeouts)
python virtual environment
- Clone the repository, then go to the root directory
cd assignment
- Run those commands
# Create a virtual environment folder
python -m venv .venv
# Activate virtual environment
source .venv/bin/activate
# install all required python packages
pip install -r requirements.txt
- Run the app in the local hoster
cd blueJays
make sure you are in the project folder
python manage.py runserver
(If you use nixos, you can use nix-shell shell.nix
)