Python新手教程:Python微信定時自動給【女朋友】傳送天氣預報
效果圖
主要思路
1.從wxpy獲取好友列表
2.建立定時器
3.定時器觸發函式
4.函式執行,遍歷好友列表
5.好友物件執行帶參函式,引數為該好友城市
6.函式中請求百度天氣介面,得到該好友對應天氣資料,解析處理資料,傳送天氣資訊,完成該物件傳送。
7.遍歷結束,傳送完畢
缺陷:打包為exe檔案之後啟動失敗,原因是定時器找不到trigger,要想解決需要檢視Apscheduler相關資料。
解決方法:換一種定時器。
編譯器上正常執行。
打包為exe之後,可以很方便發給別人使用。掃碼登入後每天早上5:30會自動給所有好友傳送效果圖中的天氣預報。
完整程式碼
from wxpy import * import requests from datetime import datetime import time from apscheduler.schedulers.blocking import BlockingScheduler#定時框架 bot = Bot(cache_path=True) # tuling = Tuling(api_key=你的api')#機器人api def send_weather(location): # 準備url地址 path ='http://api.map.baidu.com/telematics/v3/weather?location=%s&output=json&ak=TueGDhCvwI6fOrQnLM0qmXxY9N0OkOiQ&callback=?' url = path % location response = requests.get(url) result = response.json() #如果城市錯誤就按照濮陽傳送天氣 if result['error'] !=0: location ='濮陽' url = path % location response = requests.get(url) result = response.json() str0 = (' 早上好!這是今天的天氣預報!……機器人:PyChatBot\n') results = result['results'] # 取出資料字典 data1 = results[0] # 取出城市 city = data1['currentCity'] str1 =' 你的城市: %s\n' % city # 取出pm2.5值 pm25 = data1['pm25'] str2 =' Pm值 : %s\n' % pm25 # 將字串轉換為整數 否則無法比較大小 if pm25 =='': pm25 =0 pm25 =int(pm25) # 通過pm2.5的值大小判斷汙染指數 if 0 <= pm25 <35: pollution ='優' elif 35 <= pm25 <75: pollution ='良' elif 75 <= pm25 <115: pollution ='輕度汙染' elif 115 <= pm25 <150: pollution ='中度汙染' elif 150 <= pm25 <250: pollution ='重度汙染' elif pm25 >=250: pollution ='嚴重汙染' str3 =' 汙染指數: %s\n' % pollution result1 = results[0] weather_data = result1['weather_data'] data = weather_data[0] temperature_now = data['date'] str4 =' 當前溫度: %s\n' % temperature_now wind = data['wind'] str5 =' 風向 : %s\n' % wind weather = data['weather'] str6 =' 天氣 : %s\n' % weather str7 =' 溫度 : %s\n' % data['temperature'] message = data1['index'] str8 =' 穿衣 : %s\n' % message[0]['des'] str9 =' 我很貼心: %s\n' % message[2]['des'] str10 =' 運動 : %s\n' % message[3]['des'] str11 =' 紫外線 : %s\n' % message[4]['des'] str = str0 + str1 + str2 + str3 + str4 + str5 + str6 + str7 + str8 + str9 + str10 + str11 return str Python資源分享qun 784758214 ,內有安裝包,PDF,學習視訊,這裡是Python學習者的聚集地,零基礎,進階,都歡迎
好友列表
my_friends = [] my_friends = bot.friends() my_friends.pop(0)
傳送函式
def send_message():
給全體好友傳送
for friend in my_friends: friend.send(send_weather(friend.city))
傳送成功通知我
bot.file_helper.send(send_weather('濮陽')) bot.file_helper.send('傳送完畢')
定時器
print('star') sched = BlockingScheduler() sched.add_job(send_message,'cron',month='1-12',day='1-31',hour=5,minute =30) sched.start()
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69913713/viewspace-2651233/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 用python自制微信機器人,定時傳送天氣預報Python機器人
- GitHub Actions 教程:定時傳送天氣郵件Github
- 《奇巧淫技》系列-python!!每天早上八點自動傳送天氣預報郵件到QQ郵箱Python
- Python 獲取當地未來五天天氣 天氣預報 獲取天氣Python
- 【玩具】使用Python自動化傳送微信訊息進行訂水Python
- 小豬的Python學習之旅 —— 19.Python微信自動好友驗證,自動回覆,傳送群聊連結Python
- 天氣預報apiAPI
- 【python3.x】傳送自動化測試報告郵件Python測試報告
- 請利用SAX編寫程式解析Yahoo的XML格式的天氣預報,獲取天氣預報——python學習筆記XMLPython筆記
- python實戰,教你用微信每天給女朋友說晚安Python
- 【python 監控報警】python自動發微信監控報警Python
- flutter天氣預報APPFlutterAPP
- 天氣預報API介面API
- 天氣預報介面收集
- Python3實現自動傳送MySql查詢併傳送郵件PythonMySql
- 彩雲天氣:用人工智慧,給你打造私人天氣預報員人工智慧
- Win10系統怎麼設定天氣預報實時更新Win10
- 使用微信公眾平臺傳送報警資訊(Python版)薦Python
- 中國天氣網免費天氣預報介面APIAPI
- react native天氣預報React Native
- Flutter實踐:天氣預報Flutter
- Delphi天氣預報查詢
- 天氣預報程式碼大全
- 【吐血整理】微信小程式如何接入天氣預報查詢 API微信小程式API
- 在python中使用itchat傳送微信訊息Python
- Zabbix使用微信傳送告警(附上Python程式碼)Python
- 利用Python來實現報表的自動傳送,解放你時間去做更有意思的事情Python
- 教程-Python例項-傳送郵件功能Python
- 【python介面自動化】- 使用requests庫傳送http請求PythonHTTP
- python+pytest介面自動化傳送post請求Python
- python天氣查詢Python
- Python新型冠狀病毒疫情資料自動爬取+統計+傳送報告+資料螢幕(三)傳送篇Python
- 使用shell自動傳送Oracle AWR報告Oracle
- 微信公眾平臺開發(五) 天氣預報功能開發
- 查詢天氣預報網站網站
- Java呼叫取得天氣預報WebServicesJavaWeb
- Python自動化測試 :urllib2 傳送HTTP RequestPythonHTTP
- Python爬取天氣資訊並語音播報Python