修改了一下main方法:获取全国数据
4.数据排序找出全国气温最高十大城市:
1
2
3
4
5
|
# 排序找出十大温度最高的城市 # 按照温度排序 data.sort(key = lambda x: int (x[ '最高气温' ])) #十大温度最高的城市 data_2 = data[ - 10 :] |
其中在排序的时候注意:要转化为int型才可以进行排序,否则是按照string进行排序的。
5.数据可视化:
1
2
3
4
5
|
citys = list ( map ( lambda x:x[ '城市' ], data_2)) #横坐标 wendu = list ( map ( lambda x:x[ '最高气温' ], data_2)) #纵坐标 charts = Bar( '中国十大最高温度城市' ) charts.add('', citys, wendu) charts.render( '天气网.html' ) |
使用Bar模块:
Bar方法主要可以给该图标命名
add方法主要是添加(图颜色的名称,横坐标名, 纵坐标名)
render主要是存储在本地之中
结果展示:
完整代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#数据可视化 from pyecharts import Bar #用来url连接登陆等功能 import requests #解析数据 from bs4 import BeautifulSoup #用来存取爬取到的数据 data = [] def parse_data(url): headers = { 'User-Agent' : "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3741.400 QQBrowser/10.5.3863.400" } rest = requests.get(url = url, headers = headers) #使用requests.get方法爬取网页 # 一般人可能会用rest.text,但是会显示乱码 text = rest.content.decode( 'utf-8' ) #使用utf-8解码,防止显示乱码,接下来无法解析 soup = BeautifulSoup(text, 'html5lib' ) #BeautifulSoup方法需要指定解析文本和解析方式 # 爬取数据 cons = soup.find( 'div' , attrs = { 'class' : 'conMidtab' }) tables = cons.find_all( 'table' ) for table in tables: trs = table.find_all( 'tr' )[ 2 :] for index,tr in enumerate (trs): if index = = 0 : tds = tr.find_all( 'td' )[ 1 ] qiwen = tr.find_all( 'td' )[ 4 ] else : tds = tr.find_all( 'td' )[ 0 ] qiwen = tr.find_all( 'td' )[ 3 ] city = list (tds.stripped_strings)[ 0 ] wendu = list (qiwen.stripped_strings)[ 0 ] data.append({ '城市' :city, '最高气温' :wendu}) def main(): urls = [ "http://www.weather.com.cn/textFC/hb.shtml" , "http://www.weather.com.cn/textFC/db.shtml" , "http://www.weather.com.cn/textFC/hd.shtml" , "http://www.weather.com.cn/textFC/hz.shtml" , "http://www.weather.com.cn/textFC/hn.shtml" , "http://www.weather.com.cn/textFC/xb.shtml" , "http://www.weather.com.cn/textFC/xn.shtml" , "http://www.weather.com.cn/textFC/gat.shtml" ] for url in urls: parse_data(url) # 排序找出十大温度最高的城市 # 按照温度排序 data.sort(key = lambda x: int (x[ '最高气温' ])) #十大温度最高的城市 data_2 = data[ - 10 :] # 数据可视化 citys = list ( map ( lambda x:x[ '城市' ], data_2)) #横坐标 wendu = list ( map ( lambda x:x[ '最高气温' ], data_2)) #纵坐标 charts = Bar( '中国十大最高温度城市' ) charts.add('', citys, wendu) charts.render( '天气网.html' ) if __name__ = = '__main__' : main() |
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式