三、Beautiful Soup解析库

一、Beautiful Soup介绍与安装

1,Beautiful Soup介绍

答:Beautiful Soup是一个可以从HTML或XML文件中提取数据的Python库

2,Beautiful Soup安装

答:安装Beautiful Soup 4:pip install bs4
安装lxml:pip install lxml

二、Beautiful Soup对象介绍与创建

1,Beautiful Soup对象介绍

答:Beautiful Soup对象代表要解析整个文档树,支持遍历文档树搜索文档树中描述的大部分的方法。

2,Beautiful Soup对象创建

答:

  1. 导入模块:from bs4 import BeautifulSoup
  2. 创建Beautiful Soup对象:soup = BeautifulSoup('html文档','lxml')
#导入模块
from bs4 import BeautifulSoup#创建BeautifulSoup对象
soup = BeautifulSoup('<html>data</html>','lxml')
print(soup)#结果为:<html><body><p>data</p></body></html>
#这里Beautiful Soup会自动补全html

3,Beautiful Soup对象的find方法

find方法的作用:搜索文档树

find(self,name=None,attrs={},recursive=True,text=None,**kwargs)
参数
name:标签名
attrs:属性字典
recursive:是否递归循环查找
text:根据文本内容查找
返回
查找到的第一个元素对象

根据标签名查找:soup.find(‘a’)
根据属性查找:soup.find(id=‘2’)、soup.find(attrs={‘id’:‘2’})
根据文本内容查找:soup.find(text=‘three’)

①根据标签名查找
获取下面文档中的title标签和a标签
文档内容如下:

<html> <head><title>百度一下,你就知道</title></head><body><p class="title"><b>beyondyanyu</b></p><p class="beyond"> Epiphany<a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="1" class=beyond>one</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="2" class=beyond>two</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="3" class=beyond>three</a>humour</p></body>
</html> 
# 1,导入模块
from bs4 import BeautifulSoup
# 2,准备文档字符串
html = '''
<html> <head><title>百度一下,你就知道</title></head><body><p class="title"><b>beyondyanyu</b></p><p class="beyond"> Epiphany<a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="1" class=beyond>one</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="2" class=beyond>two</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="3" class=beyond>three</a>humour</p></body>
</html> 
'''
# 3,创建Beautiful Soup对象
soup = BeautifulSoup(html,'lxml')
# 4,查找title标签
title = soup.find('title')
print(title)#结果为:<title>百度一下,你就知道</title>
# 5,查找a标签
a = soup.find('a')
print(a)#结果为:<a class="beyond" href="https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343" id="1">one</a>
# 6,查找所有的a标签
a_all = soup.find_all('a')
print(a_all)#结果为:[<a class="beyond" href="https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343" id="1">one</a>, <a class="beyond" href="https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343" id="2">two</a>, <a class="beyond" href="https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343" id="3">three</a>]

②根据属性查找
获取下面文档中的id为2的标签
文档内容如下:

<html> <head><title>百度一下,你就知道</title></head><body><p class="title"><b>beyondyanyu</b></p><p class="beyond"> Epiphany<a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="1" class=beyond>one</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="2" class=beyond>two</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="3" class=beyond>three</a>humour</p></body>
</html> 
# 1,导入模块
from bs4 import BeautifulSoup
# 2,准备文档字符串
html = '''
<html> <head><title>百度一下,你就知道</title></head><body><p class="title"><b>beyondyanyu</b></p><p class="beyond"><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="1" class=beyond>one</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="2" class=beyond>two</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="3" class=beyond>three</a></p></body>
</html> 
'''
# 3,创建Beautiful Soup对象
soup = BeautifulSoup(html,'lxml')# 4,查找文档中id为2的标签
# 方式一,通过命名参数进行指定
two = soup.find(id='2')
print(two)#结果为:<a class="beyond" href="https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343" id="2">two</a># 方法二:使用attrs来指定属性字典进行查找
two = soup.find(attrs={'id':'2'})
print(two)#结果为:<a class="beyond" href="https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343" id="2">two</a>

③根据文本查找
获取下面文档中文本为three的标签文本
文档内容如下:

<html> <head><title>百度一下,你就知道</title></head><body><p class="title"><b>beyondyanyu</b></p><p class="beyond"> Epiphany<a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="1" class=beyond>one</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="2" class=beyond>two</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="3" class=beyond>three</a>humour</p></body>
</html> 
# 1,导入模块
from bs4 import BeautifulSoup
# 2,准备文档字符串
html = '''
<html> <head><title>百度一下,你就知道</title></head><body><p class="title"><b>beyondyanyu</b></p><p class="beyond"><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="1" class=beyond>one</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="2" class=beyond>two</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="3" class=beyond>three</a></p></body>
</html> 
'''
# 3,创建Beautiful Soup对象
soup = BeautifulSoup(html,'lxml')# 4,查找文档中文本为three的标签文本
text = soup.find(text='three')
print(text)#结果为:three

4,Beautiful Soup对象中的Tag对象

Tag对象介绍:Tag对象对应于原始文档中的XML或HTML标签
Tag有很多方法和属性,可以用于遍历文档树和搜索文档树以及获取标签内容

Tag对象常见的属性
name:获取标签名称
attrs:获取标签所有属性的键和值
text:获取标签的文本字符串

# 1,导入模块
from bs4 import BeautifulSoup
# 2,准备文档字符串
html = '''
<html> <head><title>百度一下,你就知道</title></head><body><p class="title"><b>beyondyanyu</b></p><p class="beyond"><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="1" class=beyond>one</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="2" class=beyond>two</a><a href=https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343 id="3" class=beyond>three</a></p></body>
</html> 
'''
# 3,创建Beautiful Soup对象
soup = BeautifulSoup(html,'lxml')
# 4,查找title标签
title = soup.find('title')
#print(title)
# 5,查找a标签
a = soup.find('a')print(type(a))#结果为:<class 'bs4.element.Tag'>
print("标签名:",a.name)#结果为:标签名: a
print("标签所有属性",a.attrs)#结果为:标签所有属性: {'href': 'https://blog.csdn.net/qq_41264055?spm=1011.2124.3001.5343', 'id': '1', 'class': ['beyond']}
print("标签文本内容",a.text)#结果为:标签文本内容: one

三、从疫情首页提取全国最新的疫情数据

当然,数据来源仍然是丁香园新型冠状病毒肺炎疫情实时动态首页
url:https://ncov.dxy.cn/ncovh5/view/pneumonia

# 1,导入相关模块
import requests
from bs4 import BeautifulSoup# 2,发送请求,获取疫情首页内容
response = requests.get('https://ncov.dxy.cn/ncovh5/view/pneumonia')
home_page = response.content.decode()
#print(home_page)#内容太多已省略,<body><script id="getAreaStat">try { window.getAreaStat = [{"provinceName":"香港","provinceShortName":"香港"。
#但是从最后一行可看出来,这里香港的疫情数据对应的id为getAreaStat
'''
<!DOCTYPE html><html lang="zh-cn" xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout" style="filter: none;"><head><link rel="stylesheet" href="//assets.dxycdn.com/gitrepo/ncov-mobile/dist/umi.bundle.css?t=1645425725691"><meta charset="utf-8"><meta content="width=device-width,initial-scale=1,user-scalable=0,viewport-fit=cover" name="viewport"><meta content="#000000" name="theme-color"><title></title><script>window.routerBase = "/ncovh5/view";</script>
<script charset="utf-8" src="//assets.dxycdn.com/gitrepo/ncov-mobile/dist/vendors~p__ECommerce~p__Pneumonia~p__Pneumonia__area~p__Pneumonia__area__index_en~p__Pneumonia__dete~e354351c.async.f15190c5.js"></script><script charset="utf-8" src="//assets.dxycdn.com/gitrepo/ncov-mobile/dist/vendors~p__Pneumonia~p__Pneumonia__area~p__Pneumonia__policy~p__Pneumonia__risk-zone~p__Pneumonia__rumor-list.async.035b6a59.js"></script><link rel="stylesheet" type="text/css" href="//assets.dxycdn.com/gitrepo/ncov-mobile/dist/vendors~p__ECommerce~p__Pneumonia~p__Pneumonia__area~p__Pneumonia__hotspot~p__Pneumonia__index_en.async.1eec8c54.css"><script charset="utf-8" src="//assets.dxycdn.com/gitrepo/ncov-mobile/dist/vendors~p__ECommerce~p__Pneumonia~p__Pneumonia__area~p__Pneumonia__hotspot~p__Pneumonia__index_en.async.61a0218b.js"></script><script charset="utf-8" src="//assets.dxycdn.com/gitrepo/ncov-mobile/dist/vendors~p__Pneumonia~p__Pneumonia__area__index_en~p__Pneumonia__index_en.async.72f0956a.js"></script><link rel="stylesheet" type="text/css" href="//assets.dxycdn.com/gitrepo/ncov-mobile/dist/p__Pneumonia.async.5cef6c52.css"><script charset="utf-8" src="//assets.dxycdn.com/gitrepo/ncov-mobile/dist/p__Pneumonia.async.bc83130c.js"></script><meta name="description" content="丁香园、丁香医生整合各权威渠道发布的官方数据,通过疫情地图直观展示,持续更新最新的新型冠状病毒肺炎的实时疫情动态。"><meta name="keywords" content="最新疫情、实时疫情、疫情地图、疫情、丁香园"><meta name="baidu-site-verification" content="IL1HU7F7Vj"></head>
<body><script id="getAreaStat">try { window.getAreaStat = [{"provinceName":"香港","provinceShortName":"香港","currentConfirmedCount":5990,"confirmedCount":22468,"suspectedCount":181,"curedCount":16190,"deadCount":288,"comment":"疑似 1 例","locationId":810000,"statisticsData":"https://file1.dxycdn.com/2020/0223/331/3398299755968040033-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":0,"vaccinationOrgCount":0,"cities":[],"dangerAreas":[]},{"provinceName":"台湾","provinceShortName":"台湾","currentConfirmedCount":5413,"confirmedCount":20007,"suspectedCount":485,"curedCount":13742,"deadCount":852,"comment":"","locationId":710000,"statisticsData":"https://file1.dxycdn.com/2020/0223/045/3398299749526003760-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":0,"vaccinationOrgCount":0,"cities":[],"dangerAreas":[]},{"provinceName":"浙江省","provinceShortName":"浙江","currentConfirmedCount":388,"confirmedCount":2255,"suspectedCount":68,"curedCount":1866,"deadCount":1,"comment":"2月10日通报核减的12例在浙江省治愈的外省病例,根据国家最新要求重新纳入累计病例。","locationId":330000,"statisticsData":"https://file1.dxycdn.com/2020/0223/537/3398299755968455045-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":519,"vaccinationOrgCount":217,"cities":[{"cityName":"杭州","currentConfirmedCount":143,"confirmedCount":328,"suspectedCount":0,"curedCount":185,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330100,"currentConfirmedCountStr":"143"},{"cityName":"境外输入","currentConfirmedCount":119,"confirmedCount":387,"suspectedCount":68,"curedCount":268,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"119"},{"cityName":"宁波","currentConfirmedCount":110,"confirmedCount":269,"suspectedCount":0,"curedCount":159,"deadCount":0,"highDangerCount":0,
'''
# 3,使用Beautiful Soup提取疫情数据
soup = BeautifulSoup(home_page,'lxml')
script = soup.find(id='getAreaStat')
text = script.text
print(text)
'''
try { window.getAreaStat = [{"provinceName":"香港","provinceShortName":"香港","currentConfirmedCount":5990,"confirmedCount":22468,"suspectedCount":181,"curedCount":16190,"deadCount":288,"comment":"疑似 1 例","locationId":810000,"statisticsData":"https://file1.dxycdn.com/2020/0223/331/3398299755968040033-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":0,"vaccinationOrgCount":0,"cities":[],"dangerAreas":[]},{"provinceName":"台湾","provinceShortName":"台湾","currentConfirmedCount":5413,"confirmedCount":20007,"suspectedCount":485,"curedCount":13742,"deadCount":852,"comment":"","locationId":710000,"statisticsData":"https://file1.dxycdn.com/2020/0223/045/3398299749526003760-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":0,"vaccinationOrgCount":0,"cities":[],"dangerAreas":[]},{"provinceName":"浙江省","provinceShortName":"浙江","currentConfirmedCount":388,"confirmedCount":2255,"suspectedCount":68,"curedCount":1866,"deadCount":1,"comment":"2月10日通报核减的12例在浙江省治愈的外省病例,根据国家最新要求重新纳入累计病例。","locationId":330000,"statisticsData":"https://file1.dxycdn.com/2020/0223/537/3398299755968455045-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":519,"vaccinationOrgCount":217,"cities":[{"cityName":"杭州","currentConfirmedCount":143,"confirmedCount":328,"suspectedCount":0,"curedCount":185,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330100,"currentConfirmedCountStr":"143"},{"cityName":"境外输入","currentConfirmedCount":119,"confirmedCount":387,"suspectedCount":68,"curedCount":268,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"119"},{"cityName":"宁波","currentConfirmedCount":110,"confirmedCount":269,"suspectedCount":0,"curedCount":159,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330200,"currentConfirmedCountStr":"110"},{"cityName":"绍兴","currentConfirmedCount":38,"confirmedCount":430,"suspectedCount":0,"curedCount":392,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330600,"currentConfirmedCountStr":"38"},{"cityName":"金华","currentConfirmedCount":2,"confirmedCount":57,"suspectedCount":0,"curedCount":55,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330700,"currentConfirmedCountStr":"2"},{"cityName":"温州","currentConfirmedCount":0,"confirmedCount":504,"suspectedCount":0,"curedCount":503,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":330300,"currentConfirmedCountStr":"0"},{"cityName":"台州","currentConfirmedCount":0,"confirmedCount":147,"suspectedCount":0,"curedCount":147,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":331000,"currentConfirmedCountStr":"0"},{"cityName":"嘉兴","currentConfirmedCount":0,"confirmedCount":46,"suspectedCount":0,"curedCount":46,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330400,"currentConfirmedCountStr":"0"},{"cityName":"省十里丰监狱","currentConfirmedCount":0,"confirmedCount":36,"suspectedCount":0,"curedCount":36,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"丽水","currentConfirmedCount":0,"confirmedCount":17,"suspectedCount":0,"curedCount":17,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":331100,"currentConfirmedCountStr":"0"},{"cityName":"衢州","currentConfirmedCount":0,"confirmedCount":14,"suspectedCount":0,"curedCount":14,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330800,"currentConfirmedCountStr":"0"},{"cityName":"湖州","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330500,"currentConfirmedCountStr":"0"},{"cityName":"舟山","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":330900,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-24,"confirmedCount":0,"suspectedCount":0,"curedCount":24,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"}],"dangerAreas":[]},{"provinceName":"广东省","provinceShortName":"广东","currentConfirmedCount":362,"confirmedCount":4163,"suspectedCount":25,"curedCount":3793,"deadCount":8,"comment":"广东卫健委未明确部分治愈病例的地市归属,因此各地市的现存确诊存在一定偏差。","locationId":440000,"statisticsData":"https://file1.dxycdn.com/2020/0223/281/3398299758115524068-135.json","highDangerCount":0,"midDangerCount":3,"detectOrgCount":120,"vaccinationOrgCount":42,"cities":[{"cityName":"深圳","currentConfirmedCount":145,"confirmedCount":798,"suspectedCount":3,"curedCount":650,"deadCount":3,"highDangerCount":0,"midDangerCount":3,"locationId":440300,"currentConfirmedCountStr":"145"},{"cityName":"广州","currentConfirmedCount":103,"confirmedCount":2205,"suspectedCount":3,"curedCount":2101,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":440100,"currentConfirmedCountStr":"103"},{"cityName":"东莞","currentConfirmedCount":31,"confirmedCount":202,"suspectedCount":1,"curedCount":170,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":441900,"currentConfirmedCountStr":"31"},{"cityName":"佛山","currentConfirmedCount":28,"confirmedCount":318,"suspectedCount":1,"curedCount":290,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440600,"currentConfirmedCountStr":"28"},{"cityName":"阳江","currentConfirmedCount":23,"confirmedCount":51,"suspectedCount":0,"curedCount":28,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441700,"currentConfirmedCountStr":"23"},{"cityName":"珠海","currentConfirmedCount":15,"confirmedCount":169,"suspectedCount":2,"curedCount":153,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":440400,"currentConfirmedCountStr":"15"},{"cityName":"惠州","currentConfirmedCount":7,"confirmedCount":71,"suspectedCount":0,"curedCount":64,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441300,"currentConfirmedCountStr":"7"},{"cityName":"江门","currentConfirmedCount":7,"confirmedCount":47,"suspectedCount":0,"curedCount":40,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440700,"currentConfirmedCountStr":"7"},{"cityName":"云浮","currentConfirmedCount":7,"confirmedCount":7,"suspectedCount":0,"curedCount":0,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":445300,"currentConfirmedCountStr":"7"},{"cityName":"中山","currentConfirmedCount":4,"confirmedCount":80,"suspectedCount":0,"curedCount":76,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":442000,"currentConfirmedCountStr":"4"},{"cityName":"湛江","currentConfirmedCount":2,"confirmedCount":43,"suspectedCount":2,"curedCount":41,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440800,"currentConfirmedCountStr":"2"},{"cityName":"河源","currentConfirmedCount":1,"confirmedCount":6,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441600,"currentConfirmedCountStr":"1"},{"cityName":"肇庆","currentConfirmedCount":0,"confirmedCount":47,"suspectedCount":1,"curedCount":46,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":441200,"currentConfirmedCountStr":"0"},{"cityName":"汕头","currentConfirmedCount":0,"confirmedCount":26,"suspectedCount":0,"curedCount":26,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440500,"currentConfirmedCountStr":"0"},{"cityName":"清远","currentConfirmedCount":0,"confirmedCount":23,"suspectedCount":0,"curedCount":23,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441800,"currentConfirmedCountStr":"0"},{"cityName":"梅州","currentConfirmedCount":0,"confirmedCount":19,"suspectedCount":0,"curedCount":19,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441400,"currentConfirmedCountStr":"0"},{"cityName":"茂名","currentConfirmedCount":0,"confirmedCount":17,"suspectedCount":0,"curedCount":17,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":440900,"currentConfirmedCountStr":"0"},{"cityName":"揭阳","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":445200,"currentConfirmedCountStr":"0"},{"cityName":"韶关","currentConfirmedCount":0,"confirmedCount":10,"suspectedCount":0,"curedCount":9,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":440200,"currentConfirmedCountStr":"0"},{"cityName":"潮州","currentConfirmedCount":0,"confirmedCount":7,"suspectedCount":0,"curedCount":7,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":445100,"currentConfirmedCountStr":"0"},{"cityName":"汕尾","currentConfirmedCount":0,"confirmedCount":6,"suspectedCount":0,"curedCount":6,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":441500,"currentConfirmedCountStr":"0"},{"cityName":"待明确地区","currentConfirmedCount":-11,"confirmedCount":0,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"notShowCurrentConfirmedCount":true,"currentConfirmedCountStr":"-"}],"dangerAreas":[{"cityName":"深圳","areaName":"龙岗区坂田街道马安堂社区侨联东10巷1号顺兴楼","dangerLevel":2},{"cityName":"深圳","areaName":"罗湖区东门街道新园路明华广场1至6楼(含6A与M层)商业区","dangerLevel":2},{"cityName":"深圳","areaName":"中兴路高时石材B区A钢构厂房","dangerLevel":2}]},{"provinceName":"广西壮族自治区","provinceShortName":"广西","currentConfirmedCount":319,"confirmedCount":1028,"suspectedCount":0,"curedCount":707,"deadCount":2,"comment":"","locationId":450000,"statisticsData":"https://file1.dxycdn.com/2020/0223/536/3398299758115523880-135.json","highDangerCount":1,"midDangerCount":10,"detectOrgCount":270,"vaccinationOrgCount":15,"cities":[{"cityName":"百色","currentConfirmedCount":227,"confirmedCount":274,"suspectedCount":0,"curedCount":47,"deadCount":0,"highDangerCount":1,"midDangerCount":10,"locationId":451000,"currentConfirmedCountStr":"227"},{"cityName":"境外输入","currentConfirmedCount":91,"confirmedCount":482,"suspectedCount":0,"curedCount":391,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"91"},{"cityName":"南宁","currentConfirmedCount":1,"confirmedCount":57,"suspectedCount":0,"curedCount":56,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450100,"currentConfirmedCountStr":"1"},{"cityName":"北海","currentConfirmedCount":0,"confirmedCount":44,"suspectedCount":0,"curedCount":43,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":450500,"currentConfirmedCountStr":"0"},{"cityName":"防城港","currentConfirmedCount":0,"confirmedCount":39,"suspectedCount":0,"curedCount":39,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450600,"currentConfirmedCountStr":"0"},{"cityName":"桂林","currentConfirmedCount":0,"confirmedCount":32,"suspectedCount":0,"curedCount":32,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450300,"currentConfirmedCountStr":"0"},{"cityName":"河池","currentConfirmedCount":0,"confirmedCount":28,"suspectedCount":0,"curedCount":27,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":451200,"currentConfirmedCountStr":"0"},{"cityName":"柳州","currentConfirmedCount":0,"confirmedCount":24,"suspectedCount":0,"curedCount":24,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450200,"currentConfirmedCountStr":"0"},{"cityName":"玉林","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450900,"currentConfirmedCountStr":"0"},{"cityName":"来宾","currentConfirmedCount":0,"confirmedCount":11,"suspectedCount":0,"curedCount":11,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":451300,"currentConfirmedCountStr":"0"},{"cityName":"钦州","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450700,"currentConfirmedCountStr":"0"},{"cityName":"贵港","currentConfirmedCount":0,"confirmedCount":8,"suspectedCount":0,"curedCount":8,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450800,"currentConfirmedCountStr":"0"},{"cityName":"梧州","currentConfirmedCount":0,"confirmedCount":5,"suspectedCount":0,"curedCount":5,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":450400,"currentConfirmedCountStr":"0"},{"cityName":"贺州","currentConfirmedCount":0,"confirmedCount":4,"suspectedCount":0,"curedCount":4,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":451100,"currentConfirmedCountStr":"0"},{"cityName":"崇左","currentConfirmedCount":0,"confirmedCount":1,"suspectedCount":0,"curedCount":1,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":451400,"currentConfirmedCountStr":"0"}],"dangerAreas":[{"cityName":"百色","areaName":"德保县都安乡伏计村陇意屯","dangerLevel":1},{"cityName":"百色","areaName":"城关镇隆盛社区东蒙荣盛二巷25号","dangerLevel":2},{"cityName":"百色","areaName":"城关镇隆盛社区盛象名都小区","dangerLevel":2},{"cityName":"百色","areaName":"都安乡坡那村多麦屯","dangerLevel":2},{"cityName":"百色","areaName":"德保县都安乡福记村山金屯","dangerLevel":2},{"cityName":"百色","areaName":"德保县维也纳酒店(德保腾飞广场店)","dangerLevel":2},{"cityName":"百色","areaName":"东凌镇登限村念洞屯","dangerLevel":2},{"cityName":"百色","areaName":"敬德镇陇正村多果屯","dangerLevel":2},{"cityName":"百色","areaName":"靖西市武平镇大道街大定屯","dangerLevel":2},{"cityName":"百色","areaName":"莲城社区德立山庄","dangerLevel":2},{"cityName":"百色","areaName":"弄贴村新村屯","dangerLevel":2}]},{"provinceName":"上海市","provinceShortName":"上海","currentConfirmedCount":209,"confirmedCount":4003,"suspectedCount":393,"curedCount":3787,"deadCount":7,"comment":"因未公布分区死亡和治愈,仅展示累计确诊和现存确诊","locationId":310000,"statisticsData":"https://file1.dxycdn.com/2020/0223/128/3398299755968454977-135.json","highDangerCount":0,"midDangerCount":0,"detectOrgCount":130,"vaccinationOrgCount":17,"cities":[{"cityName":"境外输入","currentConfirmedCount":208,"confirmedCount":3611,"suspectedCount":8,"curedCount":3403,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"208"},{"cityName":"奉贤区","currentConfirmedCount":1,"confirmedCount":11,"suspectedCount":0,"curedCount":10,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310120,"currentConfirmedCountStr":"1"},{"cityName":"外地来沪","currentConfirmedCount":0,"confirmedCount":113,"suspectedCount":0,"curedCount":112,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":0,"currentConfirmedCountStr":"0"},{"cityName":"浦东新区","currentConfirmedCount":0,"confirmedCount":82,"suspectedCount":0,"curedCount":81,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":310115,"currentConfirmedCountStr":"0"},{"cityName":"宝山区","currentConfirmedCount":0,"confirmedCount":27,"suspectedCount":0,"curedCount":26,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":310113,"currentConfirmedCountStr":"0"},{"cityName":"黄浦区","currentConfirmedCount":0,"confirmedCount":22,"suspectedCount":0,"curedCount":22,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310101,"currentConfirmedCountStr":"0"},{"cityName":"闵行区","currentConfirmedCount":0,"confirmedCount":19,"suspectedCount":0,"curedCount":19,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310112,"currentConfirmedCountStr":"0"},{"cityName":"徐汇区","currentConfirmedCount":0,"confirmedCount":18,"suspectedCount":0,"curedCount":17,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":310104,"currentConfirmedCountStr":"0"},{"cityName":"静安区","currentConfirmedCount":0,"confirmedCount":17,"suspectedCount":0,"curedCount":16,"deadCount":1,"highDangerCount":0,"midDangerCount":0,"locationId":310106,"currentConfirmedCountStr":"0"},{"cityName":"松江区","currentConfirmedCount":0,"confirmedCount":16,"suspectedCount":0,"curedCount":16,"deadCount":0,"highDangerCount":0,"midDangerCount":0,"locationId":310117,"currentConfirmedCountStr":"0"},{"cityName":"长宁区","currentConfirmedCount":0,"confirmedCount":14,"suspectedCount":0,"curedCount":14,"deadCount":...内容太多了已省略
'''

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/378222.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

strictmath_Java StrictMath sqrt()方法与示例

strictmathStrictMath类sqrt()方法 (StrictMath Class sqrt() method) sqrt() Method is available in java.lang package. sqrt()方法在java.lang包中可用。 sqrt() Method is used to find the square root of the given parameter in the method. Here, "sqrt" st…

recovery编译问题汇总

1、修改支持USB大容量存储 &#xff08;1&#xff09;、首先需要查看手机lun位置 手机链接电脑&#xff0c;打开cmd命令行&#xff0c;依次输入以下命令: adb shell find /sys -name "lun" 输出以下结果&#xff1a; 发现手机输出结果有两个&#xff0c;需要进一步查…

言语理解每日学习及精解20110831

【例题】天气预报一般要考虑气温、气压、温度、风力等因素&#xff0c;这些都是大气层本身变化的结果&#xff0c;只要掌握这些因素&#xff0c;通过计算机的计算就能准确地预报天气变化的趋势。沙尘暴作为一种特殊的天气现象&#xff0c;同样要考虑上述气象因素。据气象学家分…

【数据结构基础笔记】【栈】

代码参考《妙趣横生的算法.C语言实现》 文章目录前言1、栈的定义2、创建一个栈3、入栈和出栈操作4、栈的清空、销毁、计算栈的当前容量5、实例分析前言 本章总结&#xff1a;栈的定义、创建栈&#xff0c;销毁栈&#xff0c;入栈出栈操作等操作。 1、栈的定义 栈是一种重要的…

四、正则表达式

一、正则表达式的概念和作用 正则表达式概念&#xff1a;一种字符串匹配的模式 正则表达式作用&#xff1a; 可以检查一个字符串中是否包含某种字串替换匹配的字串提取某个字符串中匹配的字串 二、正则表达式中常见的语法 字符描述原样字符匹配字符一般字符匹配自身beyondb…

用HTML语言制作list标记,html5 datalist标签的用法是什么?这里有datalist标签的用法实例...

本篇文章主要为大家讲述了关于html5 datalist标签的用法及html5 datalist标签的用法实例。本文说了两个常用的选项框的实例供大家选择观看&#xff0c;下面就让我们一起来看这篇文章吧我们先来看看html5 datalist标签的用法&#xff1a;标签定义选项列表。请与input元素配合使用…

java treemap_Java TreeMap lastKey()方法与示例

java treemapTreeMap类lastKey()方法 (TreeMap Class lastKey() method) lastKey() method is available in java.util package. lastKey()方法在java.util包中可用。 lastKey() method is used to return the last highest key element value exists in this TreeMap. lastKey…

网上看来的

http://blog.163.com/dong_xiao_yang/blog/static/216138205201321114659430/ http://ffmpeg.org/trac/ffmpeg/wiki/How%20to%20compile%20FFmpeg%20for%20Raspberry%20Pi%20%28Raspbian%29#FFmpegwithlibaacpluslibx264andalsa-lib 编译环境 Ubuntu 12.04 w64-mingw32下载lib…

阅读iPhone.3D.Programming(O'Reilly.2010-05) 英文版 第一感觉

最近开始阅读iPhone.3D.Programming(OReilly.2010-05)&#xff0c;英文版此书&#xff0c;我阅读到P21了&#xff0c;中间讲了一个样例&#xff0c;HelloArrow在这个过程中&#xff0c;我想简单点&#xff0c;少打点字&#xff0c;直接拿书中配套来学习&#xff0c;发现一个问题…

【数据结构基础笔记】【队列】

代码参考《妙趣横生的算法.C语言实现》 文章目录前言1、队列定义2、创建一个队列3、入队列4、出队列5、销毁一个队列6、循环队列的概念7、循环队列的实现8、实例分析前言 本章总结&#xff1a;链队列定义&#xff0c;创建&#xff0c;出队入队操作&#xff0c;销毁操作&#x…

html图片自动循环轮播图,js实现图片无缝循环轮播

本文实例为大家分享了js实现图片无缝循环轮播的具体代码&#xff0c;供大家参考&#xff0c;具体内容如下代码如下Document#container{overflow:hidden;width:400px;height:300px;margin:auto;}#front,#container{display:flex;flex-direction:row;}#container img{width:400px…

五、json模块

一、json模块的介绍 json模块是Python自带的模块&#xff0c;用于json和Python数据之间的相互转换 Json与Python数据类型的对应关系 JsonPythonobjectdictarrayliststringstrnumber(int)int,longnumber(real)floattrueTruefalseFalsenullNone [#中括号括起来的&#xff0c;对…

Android开发和调试必备工具-SDK Tools

原文链接&#xff1a;http://android.eoe.cn/topic/android_sdk SDK Tools是Android SDK的一个可下载部分&#xff0c;它包括Android SDK的开发和调试的所有工具。 如果你刚刚了解SDK&#xff0c;你可以从SDK starter package下载最新版本的SDK。 如果你已经在使用SDK&#xff…

strictmath_Java StrictMath ceil()方法与示例

strictmathStrictMath类ceil()方法 (StrictMath Class ceil() method) ceil() method is available in java.lang package. ceil()方法在java.lang包中可用。 ceil() method is used to return the least or smallest value of the double type value which is greater than or…

web应用之文件上传

一、Jakart:Jakart文件上传&#xff1a;&#xff08;推荐使用&#xff09; import java.io.File;import java.io.IOException;import java.util.List; import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletReq…

【数据结构基础笔记】【树】

代码参考《妙趣横生的算法.C语言实现》 文章目录前言1、树的概念2、二叉树3、二叉树的遍历4、创建二叉树5、实例分析前言 本章总结&#xff1a;树的概念、二叉树的创建、遍历 1、树的概念 树结构是以分支关系定义得一种层次结构。 树的定义&#xff1a;树是由n(n>0)个结点…

可以自动撑起的html样式,好好玩:CSS3抖动样式CSS Shake让你的网页酷炫起来

之前在一些网站发现了一个好玩的样式&#xff0c;就是鼠标移到网站LOGO上&#xff0c;logo会自动抖动起来&#xff0c;显得非常炫酷。我也是十分感兴趣。自从本站新添加了一个视觉设计的分类之后&#xff0c;我也是想起来有个抖动CSS样式CSS Shake&#xff0c;所以今天给小伙伴…

linux技巧----查找某个正在执行的脚本

如果在机器上发现有执行的脚本&#xff0c;却不知道在哪&#xff0c;可以这样找 例如 # netstat -ltnp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp …

成功沟通的六要素

沟通在我们的生活、工作中必不可少&#xff0c;成功的沟通有助于事业成功&#xff0c;家庭美满&#xff01;下面分享一篇关于沟通的文章&#xff0c;成功沟通六要素&#xff1a; 当蜘蛛网连接起来&#xff0c;可以捆住一头狮子。——埃塞俄比亚谚语 与他人合作使我们可以实现比…

java中intvalue_Java Number intValue()方法与示例

java中intvalueNumber类intValue()方法 (Number Class intValue() method) intValue() method is available in java.lang package. intValue()方法在java.lang包中可用。 intValue() method is used to return the value denoted by this Number object converted to type int…