brandonchinn178 / circle-of-suck

A website scraping collegiate sports scores and finding a circle of suck
https://brandonchinn178.github.io/circle-of-suck
2 stars 2 forks source link

Collect data on previous games #33

Closed brandonchinn178 closed 4 years ago

brandonchinn178 commented 7 years ago

Since Sportradar doesn't have past data, find data on internet for previous games (wikipedia seems to be good, look at the schedule section) and make a JSON file of the form

[
    # for each game
    {
        'date': '1/1/2015',
        'winner': 'CAL' (see constants.py),
        'loser': 'USC',
        'winner_score': 10,
        'loser_score': 0,
    }
]

Then one of the collaborators will upload the data onto the Heroku server (and can be used for data on development servers)