roclark / sportsipy

A free sports API written for python
MIT License
484 stars 187 forks source link

sportsipy.ncaaf.rankings is returning empty dictionaries/lists #671

Open santatrout opened 2 years ago

santatrout commented 2 years ago

Describe the bug Each usage of the rankings module is returning an empty set. It was working earlier this week.

To Reproduce The following example code:

from sportsipy.ncaaf.rankings import Rankings as Rankings
rankings = Rankings()
print(rankings.current)
print(rankings.current_extended)
print(rankings.complete)

returns this:

{}
[]
{0: []}

Expected behavior I expected a dictionary or list of teams and ranks.