新聞中心
這里有您想知道的互聯網營銷解決方案
基于Python實現定時自動給微信好友發(fā)送天氣預報-創(chuàng)新互聯
效果圖
from wxpyimport * import requests from datetimeimport datetime import time from apscheduler.schedulers.blockingimport 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() #如果城市錯誤就按照濮陽發(fā)送天氣 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 ='優(yōu)' 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 #好友列表 my_friends = [] my_friends = bot.friends() my_friends.pop(0) #發(fā)送函數 def send_message(): #給全體好友發(fā)送 for friendin my_friends: friend.send(send_weather(friend.city)) #發(fā)送成功通知我 bot.file_helper.send(send_weather('濮陽')) bot.file_helper.send('發(fā)送完畢') #定時器 print('star') sched = BlockingScheduler() sched.add_job(send_message,'cron',month='1-12',day='1-31',hour=5,minute =30) sched.start()
網站標題:基于Python實現定時自動給微信好友發(fā)送天氣預報-創(chuàng)新互聯
網站路徑:http://www.ef60e0e.cn/article/dhdgih.html