我正在使用以下代码使用漂亮的 Soup 从网页上的表格结构中抓取数据:
# -*- coding: cp1252 -*-
import csv
import urllib2
import sys
import urllib
import time
import mechanize
from bs4 import BeautifulSoup
from itertools import islice
page = urllib2.urlopen('http://www.t-mobile.de/tarifuebersicht-telefonieren-und-surfen/0,23786,25241-_,00.html#grp=0&dev=0').read()
soup = BeautifulSoup(page)
for row in soup('table', {'class' : 'wloCol5'}).tbody('tr'):
tds = row['td']
print tds
这段代码给了我AttributeError: 'ResultSet' object has no attribute 'tbody'
错误。我正在为另一个运行没有任何故障的网页使用类似的代码。请告知导致此错误的此代码/网页结构可能存在什么问题。