代码拉取完成,页面将自动刷新
"""
爬取一号店的内容
"""
import requests
from lxml import html
def spider(SN, book_list=[]):
#http://search.yhd.com/c0-0/k9787115428028
URL = 'http://search.yhd.com/c0-0/k{isbn}'.format(isbn = SN)
# 获取html内容
resp = requests.get(URL)
html_data = resp.text
# xpath对象
selector = html.fromstring(html_data)
# 找到书本列表
list = selector.xpath('//div[@id="itemSearchList"]/div')
print(len(list))
# 输出每个书籍的内容
for li in list:
title = li.xpath('div//p[@class="proName clearfix"]/a/@title') # 图书标题
link = li.xpath('div//p[@class="proName clearfix"]/a/@href') # 图书链接
price = li.xpath('div//p[@class="proPrice"]/em/@yhdprice') # 书籍价格
store = li.xpath('div//p[@class="storeName limit_width"]/a/text()') # 书籍价格
print(title[0])
print(link[0])
print('一号店售价:¥', price[0])
print('未知商家' if len(store) == 0 else store[0])
print('------------------')
book_list.append({
'title': title[0],
'price': price[0],
'link': link[0],
'store': store
})
if __name__ == '__main__':
SN = '9787115428028'
spider(SN)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。