美丽的汤圈不断
编辑:我已根据需要更改了代码,但是抛出了不同的错误消息。美丽的汤圈不断
我是一个美丽的汤和编码到一定程度的相对菜单,只是寻找一个快速指针,看看我要去哪里错了。基本上我会刮我的网站,并返回价格和产品名称的清单。
import csv from datetime import datetime
quote_page = 'http://www.golfspikesdirect.com/all-golf-spikes/'
page = urllib2.urlopen(quote_page)
soup = BeautifulSoup(page,'html.parser')
product_name = {'class': 'card-title '}
product_price = {'class': 'price--withoutTax '}
divs = soup.findAll(class_ = "card-title") + soup.findAll(class_ = "price--withoutTax")
for product in divs:
name = product.find(attrs=product_name).text.strip()
price = product.find(attrs=product_price).text.strip()
print "%s - (%s)" % (name, price)
回答:
product_name
和product_price
是正常的字典和dictionares没办法text
,但你把他们当作BeautifulSoup
方法find
。
你需要
name = product.find(attrs=product_name).text.strip() price = product.find(attrs=product_price).text.strip()
以上是 美丽的汤圈不断 的全部内容, 来源链接: utcz.com/qa/262973.html