We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KeyError Traceback (most recent call last) ~\AppData\Local\Temp/ipykernel_17088/3575107685.py in ----> 1 nfl = sportsdataverse.nfl.NFLPlayProcess("401326425").espn_nfl_pbp()
~\Anaconda3\lib\site-packages\sportsdataverse\nfl\nfl_pbp.py in espn_nfl_pbp(self) 112 ) 113 awayTeamMascot = str( --> 114 pbp_txt["header"]["competitions"][0]["competitors"][1]["team"]["name"] 115 ) 116 homeTeamName = str(
KeyError: 'name'
The text was updated successfully, but these errors were encountered:
Can you provide the code that caused this error?
Sorry, something went wrong.
armstjc
No branches or pull requests
Since there is no mascot for the Washington Football Team post 2018, its produces the following key error:
KeyError Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_17088/3575107685.py in
----> 1 nfl = sportsdataverse.nfl.NFLPlayProcess("401326425").espn_nfl_pbp()
~\Anaconda3\lib\site-packages\sportsdataverse\nfl\nfl_pbp.py in espn_nfl_pbp(self)
112 )
113 awayTeamMascot = str(
--> 114 pbp_txt["header"]["competitions"][0]["competitors"][1]["team"]["name"]
115 )
116 homeTeamName = str(
KeyError: 'name'
The text was updated successfully, but these errors were encountered: