📅  最后修改于: 2023-12-03 15:07:07.792000             🧑  作者: Mango
本程序提供了全球冠状病毒疫情的实时统计信息。其中包括确诊病例数、病死率、治愈率等指标,并可根据国家或地区进行筛选。
本程序使用的API是COVID-19 API,具体文档请参考官方文档。
import requests
# 根据国家查询
country = "China"
url = f"https://api.covid19api.com/total/country/{country}"
response = requests.get(url)
data = response.json()
print(data)
# 全球疫情概览
url = "https://api.covid19api.com/summary"
response = requests.get(url)
data = response.json()
print(data)
数据类型:列表
列表元素:
数据类型:字典
字典键:
Global:全球总体数据
Countries:各国家数据