日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

天气预报爬虫小程序

發(fā)布時間:2024/9/21 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 天气预报爬虫小程序 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Python3.5
Mac ios系統(tǒng)
爬取天氣預報的小程序:

import requests, csv, random, time, socket
from bs4 import BeautifulSoup
import http.client

def get_content(url, data = None):
header = {
'Accept': 'text / html, application / xhtml + xml, application / xml;q = 0.9, image / webp, * / *;q = 0.8',
'Accept - Encoding':'gzip, deflate, sdch',
'Accept - Language':'zh - CN, zh;q = 0.8',
'Connection':'keep - alive',
'User - Agent': 'Mozilla / 5.0(Macintosh;Intel Mac OS X 10 11_6) AppleWebKit / 537.36(KHTML, like Gecko) Chrome / 50.0.2661.102Safari / 537.36'
}
timeout = random.choice(range(80,180))
while True:
try:
rep = requests.get(url, headers = header, timeout = timeout)
rep.encoding = 'utf-8'
break
except socket.timeout as e:
print('3:', e)
time.sleep(random.choice(range(8,15)))

except socket.error as e:
print('4:', e)
time.sleep(random.choice(range(20,60)))

except http.client.BadStatusLine as e:
print('5:', e)
time.sleep(random.choice(range(30,80)))

except http.client.ImproperConnectionState as e:
print('6:', e)
time.sleep(random.choice(range(5,15)))

return rep.text

def get_data(html_text):
finalFile = []
bs = BeautifulSoup(html_text, 'html.parser')
body = bs.body
data = body.find('div', id="15d")
ul = data.find('ul')
li = ul.find_all('li')

for day in li:
temp = []
inf = day.find_all('span')

date = inf[0].string
temp.append(date)

weather = inf[1].string
temp.append(weather)

temperature= inf[2].text
temp.append(temperature)

wind = inf[3].string
temp.append(wind)

wind1 = inf[4].string
temp.append(wind1)

finalFile.append(temp)

return finalFile

def write_data(data, name):
file_name = name
with open(file_name, 'a', errors = 'ignore', newline = '') as f:
f_csv = csv.writer(f)
f_csv.writerows(data)

if __name__ == '__main__':
url = 'http://www.weather.com.cn/weather15d/101270101.shtml'
html = get_content(url)
result = get_data(html)
write_data(result, 'content.csv')

轉(zhuǎn)載于:https://www.cnblogs.com/fredkeke/p/5767216.html

總結(jié)

以上是生活随笔為你收集整理的天气预报爬虫小程序的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。