diff options
author | Christian Cleberg <hello@cmc.pub> | 2025-03-29 00:23:35 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cmc.pub> | 2025-03-29 00:23:35 -0500 |
commit | ea85cd451eb052e80b38a04e25918290094325b4 (patch) | |
tree | 443fccfc7fe2a23443ac993e84436a757b3efc77 /README.md | |
download | nba-scores-ea85cd451eb052e80b38a04e25918290094325b4.tar.gz nba-scores-ea85cd451eb052e80b38a04e25918290094325b4.tar.bz2 nba-scores-ea85cd451eb052e80b38a04e25918290094325b4.zip |
initial commit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..e10029a --- /dev/null +++ b/README.md @@ -0,0 +1,59 @@ +# NBA + +NBA is a simple Python package that provides you with a quick and easy +command-line interface to current NBA scores and standings. + +See the Installation & Usage sections below for more information. + +# Table of Contents + +- [Installation](#installation) +- [Usage](#usage) +- [Contributing](#contributing) + +# Installation + +[Back to top](#table-of-contents) + +## PyPi + +```shell +bash pipx install nba-cli +``` + +## Manual + +To run the script locally, run the following commands: + +```shell +git clone https://github.com/ccleberg/nba +cd nba +pipx install . +``` + + + +# Usage + +[Back to top](#table-of-contents) + +All commands can be passed to the program with the following template: +`nba <ARGUMENT>` + +| Argument | Shortcut | Description | +|---------------|----------|-----------------------------------| +| `--scores` | `-sc` | Show today's scoreboard | +| `--standings` | `-st` | Show current conference standings | + +Scores: + + +Standings: + + +# Contributing + +[Back to top](#table-of-contents) + +Any and all contributions are welcome. Feel free to fork the project, +add features, and submit a pull request. |