爬虫入门五(练习)
入门练习
分享一个pyecharts学习网址:
Python:数据可视化pyecharts的使用.
爬取汽车之家新闻阅读量信息
python
import requests
from bs4 import BeautifulSoup
from pyecharts import Page, Pie, Bar
url = "https://www.autohome.com.cn/news/"
response = requests.get(url)
#print(response.content.decode('utf-8'))
#gbk2313解码
soup = BeautifulSoup(response.content.decode('gb2312'), 'lxml')
#print(soup)
all_news = soup.find('div', id = "auto-channel-lazyload

这篇博客是爬虫入门系列的第五部分,主要介绍了如何使用Python爬取汽车之家网站上的新闻阅读量信息,提供了代码示例和效果展示。
最低0.47元/天 解锁文章
2218





