Is there a cli application on Linux that displays realtime election results? You know, something that I can display on a terminal. It would be nicer than loading a webpage.
@Famicoman I would then use jq to have it make sense. if you do
curl blah | jq .candidates
it'll give you the two candidates outputs which might be enough for ya
@Famicoman You could parse this JSON that CNN seems to be using on their site.
```
curl 'https://politics-elex-results.data.api.cnn.io/results/electoral-votes/2020-PG-US.json'
```