Web サイトからデータを取得しようとしています。しかし、それは私を返しますincomplete read
。取得しようとしているデータは、ネストされたリンクの膨大なセットです。私はオンラインでいくつかの調査を行い、これはサーバーエラーが原因である可能性があることを発見しました (予想サイズに達する前にチャンク転送エンコーディングが終了しました)。このリンクで上記の回避策も見つけました
ただし、これを私の場合にどのように使用するかについてはわかりません。以下は私が取り組んでいるコードです
br = mechanize.Browser()
br.addheaders = [('User-agent', 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1;Trident/5.0)')]
urls = "http://shop.o2.co.uk/mobile_phones/Pay_Monthly/smartphone/all_brands"
page = urllib2.urlopen(urls).read()
soup = BeautifulSoup(page)
links = soup.findAll('img',url=True)
for tag in links:
name = tag['alt']
tag['url'] = urlparse.urljoin(urls, tag['url'])
r = br.open(tag['url'])
page_child = br.response().read()
soup_child = BeautifulSoup(page_child)
contracts = [tag_c['value']for tag_c in soup_child.findAll('input', {"name": "tariff-duration"})]
data_usage = [tag_c['value']for tag_c in soup_child.findAll('input', {"name": "allowance"})]
print contracts
print data_usage
これで私を助けてください。ありがとう