最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于Python實現(xiàn)定時自動給微信好友發(fā)送天氣預報

 更新時間:2018年10月25日 09:33:55   作者:李聰你好  
這篇文章主要介紹了基于Python實現(xiàn)定時自動給微信好友發(fā)送天氣預報的實現(xiàn)代碼,,需要的朋友可以參考下

效果圖

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']
# 取出數(shù)據(jù)字典
data1 = results[0]
# 取出城市
city = data1['currentCity']
str1 ='  你的城市: %s\n' % city
# 取出pm2.5值
pm25 = data1['pm25']
str2 ='  Pm值  : %s\n' % pm25
# 將字符串轉(zhuǎn)換為整數(shù) 否則無法比較大小
if pm25 =='':
pm25 =0
pm25 =int(pm25)
# 通過pm2.5的值大小判斷污染指數(shù)
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 ='  污染指數(shù): %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ā)送函數(shù)
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()

具體操作:

首先導入wxpy、圖靈機器人和定時器Apscheduler,定時器用來定時群發(fā)。

具體pip操作建議百度。

使用百度的一個天氣接口得到json數(shù)據(jù)。

主要思路:

1.從wxpy獲取好友列表

2.創(chuàng)建定時器

3.定時器觸發(fā)函數(shù)

4.函數(shù)執(zhí)行,遍歷好友列表

5.好友對象執(zhí)行帶參函數(shù),參數(shù)為該好友城市

6.函數(shù)中請求百度天氣接口,得到該好友對應天氣數(shù)據(jù),解析處理數(shù)據(jù),發(fā)送天氣信息,完成該對象發(fā)送。

7.遍歷結(jié)束,發(fā)送完畢

缺陷:打包為exe文件之后啟動失敗,原因是定時器找不到trigger,要想解決需要查看Apscheduler相關(guān)資料。

解決方法:換一種定時器。

編譯器上正常執(zhí)行。

打包為exe之后,可以很方便發(fā)給別人使用。掃碼登錄后每天早上5:30會自動給所有好友發(fā)送效果圖中的天氣預報。

PS:下面看下Python實現(xiàn)微信定時發(fā)送天氣預報

schedule實現(xiàn)定時

 import requests
from requests import exceptions
from urllib.request import urlopen
from bs4 import BeautifulSoup
import re
from wxpy import *
import schedule
import time
bot=Bot(cache_path=True) #登陸網(wǎng)頁微信,并保存登陸狀態(tài)
def sendblogmsg(content):
  #搜索自己的好友,注意中文字符前需要+u
  my_friend = bot.friends().search(u'卿塵')[0]
  my_friend.send(content)
  #my_group = bot.groups().search(u'卿塵')[0]
  #my_group.send(content) #發(fā)送天氣預報
def job():
  resp=urlopen('http://www.weather.com.cn/weather/101010100.shtml')
  soup=BeautifulSoup(resp,'html.parser')
  tagToday=soup.find('p',class_="tem") #第一個包含class="tem"的p標簽即為存放今天天氣數(shù)據(jù)的標簽
  try:
    temperatureHigh=tagToday.span.string #有時候這個最高溫度是不顯示的,此時利用第二天的最高溫度代替。
  except AttributeError as e:
    temperatureHigh=tagToday.find_next('p',class_="tem").span.string #獲取第二天的最高溫度代替
  temperatureLow=tagToday.i.string #獲取最低溫度
  weather=soup.find('p',class_="wea").string #獲取天氣
  contents = '北京' + '\n' + '最高溫度:' + temperatureHigh + '\n' + '最低溫度:' + temperatureLow + '\n' + '天氣:' + weather 
    # result3 = '最低溫度:' + temperatureLow
  #print('最低溫度:' + temperatureLow)
  #print('最高溫度:' + temperatureHigh)
  # print('天氣:' + weather)
  sendblogmsg(contents)
#定時
schedule.every().day.at("19:20").do(job) #規(guī)定每天12:30執(zhí)行job()函數(shù)
while True:
  schedule.run_pending()#確保schedule一直運行
  time.sleep(1)
bot.join() #保證上述代碼持續(xù)運行

end

總結(jié)

以上所述是小編給大家介紹的基于Python實現(xiàn)定時自動給微信好友發(fā)送天氣預報,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評論

江安县| 石泉县| 贵州省| 定日县| 衡水市| 杭锦后旗| 连山| 屯门区| 寻甸| 伊吾县| 阜新市| 应用必备| 鸡西市| 鸡西市| 武穴市| 涿州市| 赤壁市| 秭归县| 仁寿县| 天津市| 双柏县| 仲巴县| 三都| 民县| 金溪县| 双辽市| 综艺| 沈阳市| 泰兴市| 九江市| 庆元县| 板桥市| 醴陵市| 阿克苏市| 庆安县| 武山县| 江阴市| 房山区| 灌南县| 曲松县| 佛学|