A command line program to view current NBA scores from the terminal.
Game scores are scraped from NBC Sports
To get the scores for the current day:
./target/release/nba-scores-cli
To get the scores from yesterday:
./target/release/nba-scores-cli -d y
To see the games scheduled for tomorrow:
./target/release/nba-scores-cli -d T
The program is set to scrape and display the game information every 10 seconds.
There currently is data on game leaders for points, rebounds, and assists packed into the program, but the program currently does not have a way to display it... soon to come.