https://github.com/ocelotsloth/nflscores
Scraping utility which generates spreadsheet of NFL Weekly Scores
https://github.com/ocelotsloth/nflscores
colly csv golang nfl
Last synced: 24 days ago
JSON representation
Scraping utility which generates spreadsheet of NFL Weekly Scores
- Host: GitHub
- URL: https://github.com/ocelotsloth/nflscores
- Owner: ocelotsloth
- License: mit
- Created: 2018-08-17T21:23:57.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-10T03:43:15.000Z (about 6 years ago)
- Last Synced: 2026-05-09T06:17:14.096Z (about 2 months ago)
- Topics: colly, csv, golang, nfl
- Language: Go
- Homepage: https://git.sr.ht/~ocelotsloth/nflscores
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NFLSCORES
This is a simple command-line utility which scrapes all of the NFL scores
and dumps them to the terminal in CSV format. This utility was written over
a weekend for a friend, and will likely not see active development again
unless somebody opens an issue.
## Installing
`go get git.sr.ht/~ocelotsloth/nflscores/nflscores` should get you where you
need to go.
You will need to install golang first, of course. At this time I will not
be distributing precompiled binaries.
## Usage
Simply type `nflscores` after installing the binary. To bring up the help
message.
## Architecture
Note that the library I defined is in the `git.sr.ht/~ocelotsloth/nflscores`
package, while the actual executable command is defined in the
`git.sr.ht/~ocelotsloth/nflscores/nflscores` package. You need to install the
executable to work with this tool. Look in that directory for the `main.go`
file if you are looking to read how this tool functions.