python微信自动发消息

编程入门 行业动态 更新时间:2024-10-27 00:34:14

python微信自动<a href=https://www.elefans.com/category/jswz/34/1748995.html style=发消息"/>

python微信自动发消息

【实例简介】

【实例截图】

【核心代码】

# 下载源码就运行,你需要改动几个地方

from __future__ import unicode_literals

from threading import Timer

from wxpy import *

import requests

bot = Bot()

# linux执行登陆请调用下面的这句

#bot = Bot(console_qr=2,cache_path="botoo.pkl")

def get_news():

"""获取金山词霸每日一句,英文和翻译"""

url = "/"

r = requests.get(url)

content = r.json()['content']

note = r.json()['note']

return content, note

def send_news():

try:

content,note = get_news()

# 你朋友的微信名称,不是备注,也不是微信帐号。

my_friend = bot.friends().search(u'小明')[0]

my_friend.send(content)

my_friend.send(note)

my_friend.send(u"Have a good one!")

# 每86400秒(1天),发送1次

t = Timer(86400, send_news)

t.start()

except:

# 你的微信名称,不是微信帐号。

my_friend = bot.friends().search('常念')[0]

my_friend.send(u"今天消息发送失败了")

if __name__ == "__main__":

send_news()

更多推荐

python微信自动发消息

本文发布于:2024-02-27 13:09:44,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1706671.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:发消息   python

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!