1 Star 0 Fork 0

周凌志/爬虫作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zh2 503 Bytes
一键复制 编辑 原始数据 按行查看 历史
周凌志 提交于 2021-12-22 03:24 . add zh2.
import requests
from lxml import etree
url = 'http://search.dangdang.com/?key=python%B3%CC%D0%F2%C9%E8%BC%C6&act=input'
res = requests.get(url)
xhtml = etree.HTML(res.text)
title = xhtml.xpath('//p[@name="title"]/a/text()')
price = xhtml.xpath('//span[@class="search_now_price"]/text()')
people = xhtml.xpath('//p[@class="search_book_author"]/span/a/text()')
jieshao = xhtml.xpath('//p[@class="detail"]/ text()')
for i,j,d,k in zip(title,price,people,jieshao):
print(i,j,d,k)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-lingzhi1218/crawler-operation.git
git@gitee.com:zhou-lingzhi1218/crawler-operation.git
zhou-lingzhi1218
crawler-operation
爬虫作业
master

搜索帮助