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
![](https://private-user-images.githubusercontent.com/16947266/266744046-f320dda7-2b80-4529-8fad-0d88fedb6050.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyNjUzMTQsIm5iZiI6MTczOTI2NTAxNCwicGF0aCI6Ii8xNjk0NzI2Ni8yNjY3NDQwNDYtZjMyMGRkYTctMmI4MC00NTI5LThmYWQtMGQ4OGZlZGI2MDUwLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDA5MTAxNFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTRkMDFmNWQ3ZWUzOGE1MzI5Yzk2Y2ZlNmQ5NGUzOTM4YjA2MzZiNjQ1NWJhM2ZiYjYyZDVmOWFhYzIyNTZmNWYmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.IjwGzllHQlpwlrX766r1t10ZXK2StMdoS7fJ_PTCZR8)
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
)