1 Star 0 Fork 0

周欣/爬虫zy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
5.3 749 Bytes
一键复制 编辑 原始数据 按行查看 历史
周欣 提交于 2021-09-23 06:58 . add 5.3.
#书名 星级 图片链接 价格
import requests
from bs4 import BeautifulSoup
url = 'https://books.toscrape.com/'
response = requests.get(url)
print(response.status_code)
# print(response.text)
html = response.text
# bs4的使用
# 1、得到一个beautifulsoup对象
soup = BeautifulSoup(html,'html.parser')
#书名 图片链接
temp = soup.find_all(class_="image_container")
for i in temp:
imgSrc = i.a.img['src']
bookname = i.a.img['alt']
print(imgSrc)
print(bookname)
#价格
temp2 = soup.find_all(class_="product_price")
for i in temp2:
price = i.p.string
print(price)
#星级
temp3 = soup.find_all(class_="product_pod")
for i in temp3:
star = i.p['class']
print(star)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-xin607/zx2.git
git@gitee.com:zhou-xin607/zx2.git
zhou-xin607
zx2
爬虫zy
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385