以前在瀏覽網站的時候發現了篇文章「玩轉樹莓派」爲女友打造一款智能語音鬧鐘,文章中介紹了使用樹莓派打造一款語音播報天氣的鬧鐘。html
當時就想照着來,也本身作個鬧鐘。由於一直沒有買到樹莓派(主要是想不起來買),這件事就擱淺了。雖然硬件沒有,但能夠用微信啊。python
下面開始正文部分。微信
目前只是最第一版本,只獲取了當前的日期、天氣情況、氣溫、風向和風力這五個信息。以上信息都是從中國天氣網獲取的。網站
上碼:編碼
from bs4 import BeautifulSoup from urllib.request import urlopen def get_weather(url): #url = 'http://www.weather.com.cn/weather/101210402.shtml' html = urlopen(url).read().decode('utf-8') # print(html) soup = BeautifulSoup(html, features='lxml') today = soup.find('li', attrs={'class': 'sky skyid lv1 on'}) # print(today) day = today.find('h1').get_text() # print(day.get_text()) weather = today.find('p', {'class': 'wea'}).get_text() # print(weather.get_text()) temp = today.find('p', {'class': 'tem'}).get_text()[1:-1] # print(temp.get_text()) windy = today.find('p', {'class': 'win'}).find('em').find_all('span') windy = windy[0]['title']+'轉'+windy[1]['title'] # print(windy) windy_power = today.find('p', {'class': 'win'}).find_all('i')[0].get_text() # print('風力:',windy_power.get_text()) return day, weather, temp, windy, windy_power
get_weather()的參數是包含要查詢地區的地區編碼的URL連接,使用你要查詢的地區編碼替換實例中的「101210402」便可。關於地區編碼的獲取我這裏提供兩種方法:一種是從網上找現成的,另外一種中就是在天氣網上輸入地區而後獲得URL。我的推薦第二種方法,由於這樣能夠查到縣/區這一級別。url
itchat是一個開源的微信我的號接口,使用Python調用微信從未如此簡單。關於項目的詳細介紹和使用,請看這裏。spa
上碼:code
import itchat import weather_tools def send_weather(url): # 獲取天氣信息 day, weather, temp, windy, windy_power = weather_tools.get_weather(url) # 拼接消息 msg = '今日天氣:\n時間:{}\n天氣:{}\n氣溫:{}\n風向:{}\n風力:{}' msg = msg.format(day, weather, temp, windy, windy_power) # 登陸微信 itchat.auto_login(True) # 發送消息 itchat.send(msg, toUserName='filehelper') # 退出登陸 itchat.logout() if __name__ == "__main__": url = 'http://www.weather.com.cn/weather/101210402.shtml' send_weather(url)
send_weather()是向 文件助手發送當天的天氣情況,‘filehelper’表明微信中的文件助手。orm