jemorriso / PySBR

MIT License
75 stars 24 forks source link

UConn Huskies missing? #8

Open rileypeterson opened 3 years ago

rileypeterson commented 3 years ago

Small thing:

ncaab = NCAAB()
ncaab.team_id("uconn") # Not there
ncaab.team_id("huskies") # Not there
ncaab._team_ids

Can't find UConn Huskies for the life of me... is it just missing?? If not, what pattern can I use to find their id?

Great job with this by the way!!

jemorriso commented 3 years ago

Hey sorry about that! Connecticut is indeed missing for some reason, I will have to update that. In the meantime you can do this:

from pysbr import SearchEvents
s = SearchEvents('connecticut')
s.list()

This will give you information about any upcoming events matching the search string.

Let me know if you find any other missing teams.