Python爬取疫情資料

2021-10-16 12:56:35 字數 1509 閱讀 1577

**實現

輸出結果

import requests # 請求庫

import pandas as pd

# 日期

today = time.strftime(

'%y%m%d'

,time.localtime())

.format

(y='年'

,m='月'

,d='日'

)# **

url =

''# 請求頭

headers =

# 傳送請求

response = requests.get(url=url,headers=headers)

# print(response)

# 得到相應的json資料

json = response.json(

)# 資料列表

city =

diagnosed =

suspected =

cured =

#print(json)

if json.get(

'data'):

for item in json.get(

'data')[

'detail']:

# print(item)

# 地區

'city'])

'diagnosed'])

'suspected'])

'cured'])

# 利用pandas儲存檔案

df = pd.dataframe(

)df[

'城市'

]= city

df['確診'

]= diagnosed

df['疑似'

]= suspected

df['**'

]= cured

df.to_csv(today+

'全國疫情資料.csv'

,mode=

'w',index=

none

,encoding=

'gbk'

)print

('儲存完成!'

搜狗 疫情資料爬取(Python)

上週已經分享過搜狗 疫情資料爬取 r語言 這次分享一下搜狗 疫情資料爬取 python from urllib import request from lxml import etree import re import pandas as pd import json url response r...

使用Python進行疫情資料爬取

為了使用python學習爬取疫情資料,提前學習了python中的語法和各種儲存結構 dirt 若沒有這些基礎很難看懂python 更別提寫了 放入要爬的url url 設定header做乙個防爬機制 獲取response的json response requests.get url,headers ...

爬取最新疫情資料

題目 程式設計爬取每日最新的疫情統計資料。並將爬取結果匯入到資料庫中。將視覺化結果與統計資料結合,實時顯示當前最新資料。這次的作業與上次周的視覺化可以整合成乙個完整的 只需要在這次加上python爬取資料即可 爬取的 如下 1 from os import path 2import requests...