基于python實(shí)現(xiàn)微信模板消息
我的風(fēng)格,廢話不多說(shuō)了,直接給大家貼代碼了,并在一些難點(diǎn)上給大家附了注釋,具體代碼如下所示:
#!/usr/bin/env python #-*- coding:utf-8 -*- import urllib2,json import datetime,time from config import * import sys reload(sys) sys.setdefaultencoding("utf-8") class WechatPush(): def __init__(self,appid,secrect,file_name): # 傳入appid self.appid = appid # 傳入密碼 self.secrect = secrect # 傳入記錄token和過(guò)期時(shí)間的文件名 self.file_name=file_name def build_timestamp(self,interval): # 傳入時(shí)間間隔,得到指定interval后的時(shí)間 格式為"2015-07-01 14:41:40" now = datetime.datetime.now() delta = datetime.timedelta(seconds=interval) now_interval=now + delta return now_interval.strftime(‘%Y-%m-%d %H:%M:%S‘) def check_token_expires(self): # 判斷token是否過(guò)期 with open(self.file_name,‘r‘) as f: line=f.read() if len(line)>0: expires_time=line.split(",")[1] token=line.split(",")[0] else: return "","true" curr_time=time.strftime(‘%Y-%m-%d %H:%M:%S‘) # 如果過(guò)期返回false if curr_time>expires_time: return token,"false" # 沒過(guò)期返回true else: return token,"true" def getToken(self): # 獲取accessToken url = ‘https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=‘+self.appid + "&secret="+self.secrect try: f = urllib2.urlopen(url) s = f.read() # 讀取json數(shù)據(jù) j = json.loads(s) j.keys() # 從json中獲取token token = j[‘a(chǎn)ccess_token‘] # 從json中獲取過(guò)期時(shí)長(zhǎng) expires_in =j[‘expires_in‘] # 將得到的過(guò)期時(shí)長(zhǎng)減去300秒然后與當(dāng)前時(shí)間做相加計(jì)算然后寫入到過(guò)期文件 write_expires=self.build_timestamp(int(expires_in-300)) content="%s,%s" % (token,write_expires) with open(self.file_name,‘w‘) as f: f.write(content) except Exception,e: print e return token def post_data(self,url,para_dct): """觸發(fā)post請(qǐng)求微信發(fā)送最終的模板消息""" para_data = para_dct f = urllib2.urlopen(url,para_data) content = f.read() return content def do_push(self,touser,template_id,url,topcolor,data): ‘‘‘推送消息 ‘‘‘ #獲取存入到過(guò)期文件中的token,同時(shí)判斷是否過(guò)期 token,if_token_expires=self.check_token_expires() #如果過(guò)期了就重新獲取token if if_token_expires=="false": token=self.getToken() # 背景色設(shè)置,貌似不生效 if topcolor.strip()==‘‘: topcolor = "#7B68EE" #最紅post的求情數(shù)據(jù) dict_arr = {‘touser‘: touser, ‘template_id‘:template_id, ‘url‘:url, ‘topcolor‘:topcolor,‘data‘:data} json_template = json.dumps(dict_arr) requst_url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token="+token content = self.post_data(requst_url,json_template) #讀取json數(shù)據(jù) j = json.loads(content) j.keys() errcode = j[‘errcode‘] errmsg = j[‘errmsg‘] #print errmsg if __name__ == "__main__": def alarm(title,hostname,timestap,level,message,state,tail): """報(bào)警函數(shù)""" color="#FF0000" data={"first":{"value":title},"keyword1":{"value":hostname,"color":color},"keyword2":{"value":timestap,"color":color},"keyword3":{"value":level,"color":color},"keyword4":{"value":message,"color":color},"keyword5":{"value":state,"color":color},"remark":{"value":tail}} return data def recover(title,message,alarm_time,recover_time,continue_time,tail): """恢復(fù)函數(shù)""" re_color="#228B22" data={"first":{"value":title},"content":{"value":message,"color":re_color},"occurtime":{"value":alarm_time,"color":re_color},"recovertime":{"value":recover_time,"color":re_color},"lasttime":{"value":continue_time,"color":re_color},"remark":{"value":tail}} return data # data=alarm("測(cè)試的報(bào)警消息","8.8.8.8",time.ctime(),"最高級(jí)別","然并卵","掛了","大傻路趕緊處理") # 實(shí)例化類 webchart=WechatPush(appid,secrect,file_name) url="http://www.xiaoniu88.com" print len(sys.argv) # 發(fā)送報(bào)警消息 if len(sys.argv) == 9: title=sys.argv[1] hostname=sys.argv[2] timestap=sys.argv[3] level=sys.argv[4] message=sys.argv[5] state=sys.argv[6] tail=sys.argv[7] print "sys.argv[1]"+sys.argv[1] print "sys.argv[2]"+sys.argv[2] print "sys.argv[3]"+sys.argv[3] print "sys.argv[4]"+sys.argv[4] print "sys.argv[5]"+sys.argv[5] print "sys.argv[6]"+sys.argv[6] print "sys.argv[7]"+sys.argv[7] print "sys.argv[8]"+sys.argv[8] with open("/etc/zabbix/moniter_scripts/test.log",‘a(chǎn)+‘) as f: f.write(title+"\n") f.write(hostname+"\n") f.write(timestap+"\n") f.write(level+"\n") f.write(message+"\n") f.write(state+"\n") f.write(tail+"\n") f.write("%s_%s" % ("group",sys.argv[8])+"\n") data=alarm(title,hostname,timestap,level,message,state,tail) group_name="%s_%s" % ("group",sys.argv[8]) for touser in eval("%s_%s" % ("group",sys.argv[8])): webchart.do_push(touser,alarm_id,url,"",data) for touser in group_super: webchart.do_push(touser,alarm_id,url,"",data) #發(fā)送恢復(fù)消息 elif len(sys.argv) == 8: title=sys.argv[1] message=sys.argv[2] alarm_time=sys.argv[3] recover_time=sys.argv[4] continue_time=sys.argv[5] tail=sys.argv[6] print "sys.argv[1]"+sys.argv[1] print "sys.argv[2]"+sys.argv[2] print "sys.argv[3]"+sys.argv[3] print "sys.argv[4]"+sys.argv[4] print "sys.argv[5]"+sys.argv[5] print "sys.argv[6]"+sys.argv[6] print "sys.argv[7]"+sys.argv[7] data=recover(title,message,alarm_time,recover_time,continue_time,tail) for touser in eval("%s_%s" % ("group",sys.argv[7])): webchart.do_push(touser,recover_id,url,"",data) for touser in group_super: webchart.do_push(touser,recover_id,url,"",data)
好了,代碼到此結(jié)束了,希望以上所述關(guān)于python模板消息的相關(guān)敘述能夠給大家?guī)?lái)幫助。哪里寫的不好,還請(qǐng)各位大俠多多見諒,提出寶貴意見,謝謝。
- Python版微信紅包分配算法
- Python微信庫(kù):itchat的用法詳解
- python基于itchat實(shí)現(xiàn)微信群消息同步機(jī)器人
- Python+微信接口實(shí)現(xiàn)運(yùn)維報(bào)警
- python實(shí)現(xiàn)微信接口(itchat)詳細(xì)介紹
- python3操作微信itchat實(shí)現(xiàn)發(fā)送圖片
- Python使用微信SDK實(shí)現(xiàn)的微信支付功能示例
- 利用python微信庫(kù)itchat實(shí)現(xiàn)微信自動(dòng)回復(fù)功能
- 利用Python開發(fā)微信支付的注意事項(xiàng)
- Python利用Nagios增加微信報(bào)警通知的功能
- python爬蟲_微信公眾號(hào)推送信息爬取的實(shí)例
- Python實(shí)現(xiàn)的微信紅包提醒功能示例
相關(guān)文章
Python fileinput模塊如何逐行讀取多個(gè)文件
這篇文章主要介紹了Python fileinput模塊如何逐行讀取多個(gè)文件,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-10-10Django框架靜態(tài)文件處理、中間件、上傳文件操作實(shí)例詳解
這篇文章主要介紹了Django框架靜態(tài)文件處理、中間件、上傳文件操作,結(jié)合實(shí)例形式詳細(xì)分析了Django框架中靜態(tài)文件處理、中間件及上傳文件操作相關(guān)實(shí)現(xiàn)技巧與注意事項(xiàng),需要的朋友可以參考下2020-02-02python的列表List求均值和中位數(shù)實(shí)例
這篇文章主要介紹了python的列表List求均值和中位數(shù)實(shí)例,具有很好對(duì)參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2020-03-03Python數(shù)據(jù)結(jié)構(gòu)與算法之算法分析詳解
算法分析的主要目標(biāo)是從運(yùn)行時(shí)間和內(nèi)存空間消耗等方面比較算法。本文將為大家詳細(xì)介紹Python數(shù)據(jù)結(jié)構(gòu)與算法中的算法分析,需要的可以參考一下2021-12-12selenium2.0中常用的python函數(shù)匯總
這篇文章主要介紹了selenium2.0中常用的python函數(shù),總結(jié)分析了selenium2.0中常用的python函數(shù)的功能、原理與基本用法,需要的朋友可以參考下2019-08-08Python實(shí)現(xiàn)網(wǎng)絡(luò)端口轉(zhuǎn)發(fā)和重定向的方法
這篇文章主要介紹了Python實(shí)現(xiàn)網(wǎng)絡(luò)端口轉(zhuǎn)發(fā)和重定向的方法,結(jié)合實(shí)例形式分析了Python基于threading和socket模塊實(shí)現(xiàn)端口轉(zhuǎn)發(fā)與重定向的具體操作技巧,需要的朋友可以參考下2016-09-09python實(shí)現(xiàn)將文本轉(zhuǎn)換成語(yǔ)音的方法
這篇文章主要介紹了python實(shí)現(xiàn)將文本轉(zhuǎn)換成語(yǔ)音的方法,涉及Python中pyTTS模塊的相關(guān)使用技巧,需要的朋友可以參考下2015-05-05