2019年7月26日

初识python 之 爬虫:BeautifulSoup 的 find、find_all、select 方法

摘要: from bs4 import BeautifulSoup lxml 以lxml形式解析html,例:BeautifulSoup(html,'lxml') # 注:html5lib 容错率最高find 返回找到的第一个标签find_all 以list的形式返回找到的所有标签limit 指定返回的标签 阅读全文

posted @ 2019-07-26 22:39 Simple-Sir 阅读(20179) 评论(0) 推荐(2) 编辑

初识python 之 爬虫:爬取中国天气网数据

摘要: 用到模块: 获取网页并解析:import requests,html5lib from bs4 import BeautifulSoup 使用pyecharts的Bar可视化工具“绘制图表”,写入HTML文件,附pyecharts官方中文API地址:https://pyecharts.org/#/f 阅读全文

posted @ 2019-07-26 17:21 Simple-Sir 阅读(2776) 评论(0) 推荐(0) 编辑

导航