资源简介

基于python; 每天可以给指定人发消息; 可以每天整点定时;

资源截图

代码片段和文件信息

from __future__ import unicode_literals
from threading import Timer
from wxpy import *
import requests
bot = Bot()
def get_news1():
 # 获取金山词霸每日一句,英文和翻译
url = “http://open.iciba.com/dsapi/“
r = requests.get(url)
contents = r.json()[‘content‘]
translation = r.json()[‘translation‘]
return contents translation

def send_news():
try:
my_friend = bot.friends().search(‘dumpling‘)[0]
my_friend.send(get_news1()[0])
my_friend.send(get_news1()[1][5:])
my_friend.send(“Cxs!“)
t = Timer(86400send_news) # 每86400秒(1天),发送1次,不用linux的定时任务是因为每次登陆都需要扫描二维码登陆,很麻烦的一件事,就让他一直挂着吧
t.start()
except:
my_friend = bot.friends().search(‘O_o‘)[0]     # 你的微信名称,不是微信帐号。
my_friend.send(u“今天消息发送失败了“)

if __name__ == “__main__“:
send_news()


#https://www.cnblogs.com/jaycekon/archive/2017/07/17/WxpyRedis.html

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1018  2018-04-11 22:31  python每天发消息\Send_Friends.py

     目录          0  2018-04-12 00:11  python每天发消息

----------- ---------  ---------- -----  ----

                 1018                    2


评论

共有 条评论