彼らはスコアボックスである種のJavascriptを使用しているので、もっと巧妙なトリックをプレイする必要があります(私の改行):
/* box of awesome */
// iscurrentweek ? true;
(new nfl.scores.Game('2009112905','54635',{state:'pre',container:'scorebox-2009112905',
wrapper:'sb-wrapper-2009112905',template:($('scorebox-2009112905').innerHTML),homeabbr:'NYJ',
awayabbr:'CAR'}));
しかし、あなたの質問に答えるために、BeautifulSoupはそれを(一見)うまく解析します:
fp = urlopen("http://www.nfl.com/scores")
data = ""
while 1:
r = fp.read()
if not r:
break
data += r
fp.close()
soup = BeautifulSoup(data)
print soup.contents[2].contents[1].contents[1]
出力:
<title>NFL Scores: 2009 - Week 12</title>
私の意見では、 YahooのNFLスコアボードをこすり取るほうが簡単かもしれません...実際、試してみてください。
編集: BeautifulSoupを学ぶための言い訳としてあなたの質問を使用しました。アレックス・マルテッリはその賞賛を歌っていたので、試してみる価値があると思いました-男、私は感銘を受けました。
とにかく、Yahoo!の初歩的なスコアスクレーパーを作ることができました。スコアボード、そのように:
def main():
soup = BeautifulSoup(YAHOO_SCOREBOARD)
on_first_team = True
scores = []
hold = None
# Iterate the tr that contains a team's box score
for item in soup(name="tr", attrs={"align": "center", "class": "ysptblclbg5"}):
# Easy
team = item.b.a.string
# Get the box scores since we're industrious
boxscore = []
for quarter in item(name="td", attrs={"class": "yspscores"}):
boxscore.append(int(quarter.string))
# Final score
sub = item(name="span", attrs={"class": "yspscores"})[0]
if sub.b:
# Winning score
final = int(sub.b.string)
else:
data = sub.string.replace(" ", "")
if ":" in data:
# Catch TV: XXX and 0:00pm ET
final = None
else:
try: final = int(data)
except: final = None
if on_first_team:
hold = { team : (boxscore, final) }
on_first_team = False
else:
hold[team] = (boxscore, final)
scores.append(hold)
on_first_team = True
for game in scores:
print "--- Game ---"
for team in game:
print team, game[team]
日曜日にこれを微調整して、実際にラフなので、どのように動作するかを確認します。現在のところ、次のように出力されます。
--- Game ---
Green Bay ([0, 13, 14, 7], 34)
Detroit ([7, 0, 0, 5], 12)
--- Game ---
Oakland ([0, 0, 7, 0], 7)
Dallas ([3, 14, 0, 7], 24)
それを見てください、私もボックススコアを奪いました...まだ起こっていないゲームの場合、私たちは次のようになります:
--- Game ---
Washington ([], None)
Philadelphia ([], None)
とにかく、あなたがジャンプするためのペグ。幸運を。