2020年のNFLXMLスケジュールデータの場所
nflgameモジュールとnfldbモジュールを使用してnflxmlデータからスケジュールを取得していますが、以下の関数を使用して生成されたURLが404エラーを返すことに気付きました。他の誰かが最近これを経験し、なぜこれが当てはまるのか知っていますか?
def schedule_url(year, stype, week):
"""
Returns the NFL.com XML schedule URL. `year` should be an
integer, `stype` should be one of the strings `PRE`, `REG` or
`POST`, and `gsis_week` should be a value in the range
`[0, 17]`.
"""
xmlurl = 'http://www.nfl.com/ajax/scorestrip?'
if stype == 'POST':
week += 17
if week == 21: # NFL.com you so silly
week += 1
return '%sseason=%d&seasonType=%s&week=%d' % (xmlurl, year, stype, week)
schedule_url(2019, 'REG', 1)
回答
2 chitown88
nfl.comはサイトとAPIを再構築しました。nflgameはこれに大きく依存していましたが、現在は機能していません。nflスケジュール、ライブスコア、アップデート、実況などを取得するための代替手段を見つける必要があります。
ESPNエンドポイントからでもスケジュールを取得できます
import requests
headers = {'User-Agent': 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Mobile Safari/537.36'}
url = "http://site.api.espn.com/apis/site/v2/sports/football/nfl/scoreboard"
payload = {'week':'1'}
jsonData = requests.get(url, headers=headers, params=payload).json()
1 Amor
古いものはもう機能しないので、これは私がスコアを取得するために使用しているものです。
https://static.nfl.com/liveupdate/scorestrip/ss.xml
「https://static.nfl.com/ajax/scorestrip?」を使用します または、wwwの部分を静的に置き換えるだけで、準備は完了です。
rswayz
また、将来のゲームでは、新しいサイト形式は次のとおりです。
https://static.nfl.com/ajax/scorestrip?season=2020&seasonType=REG&week=2