我是靠谱客的博主 受伤早晨,最近开发中收集的这篇文章主要介绍netty 定时发送消息_Python3 itchat实现微信定时发送群消息,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

6cc4c581e52d038f7f772279aa034aaf.png

一、简介

1,使用微信,定时往指定的微信群里发送指定信息。

2,需要发送的内容使用excel进行维护,指定要发送的微信群名、时间、内容。

79d50df3d300ea5d594cc9c8a3838be7.png

二、py库

1,itchat:这个是主要的工具,用于连接微信个人账号接口。以下是一些相关的知识点网站。

2,xlrd:这个是用来读Excel文件的工具。

3,apscheduler:这个是用来定时调度时间的工具。

4f18d736b57691aa7a4334412d8ef4a1.png

三、实例代码

# coding=utf-8from datetime import datetimeimport itchatimport xlrdfrom apscheduler.schedulers.background import BlockingSchedulerimport os'''遇到不懂的问题?Python学习交流群:821460695满足你的需求,资料都已经上传群文件,可以自行下载!'''def SentChatRoomsMsg(name, context): itchat.get_chatrooms(update=True) iRoom = itchat.search_chatrooms(name) for room in iRoom: if room['NickName'] == name: userName = room['UserName'] break itchat.send_msg(context, userName) print("发送时间:" + datetime.now().strftime("%Y-%m-%d %H:%M:%S") + "" "发送到:" + name + "" "发送内容:" + context + "") print("*********************************************************************************") scheduler.print_jobs()def loginCallback(): print("***登录成功***")def exitCallback(): print("***已退出***")itchat.auto_login(hotReload=True, enableCmdQR=True, loginCallback=loginCallback, exitCallback=exitCallback)workbook = xlrd.open_workbook( os.path.join(os.path.dirname(os.path.realpath(__file__)), "chatroomsfileAutoSentChatroom.xlsx"))# workbook = xlrd.open_workbook("D:PyCharmCodeAutoLiulishouWechatchatroomsfileAutoSentChatroom.xlsx")sheet = workbook.sheet_by_name('Chatrooms')iRows = sheet.nrowsscheduler = BlockingScheduler()index = 1for i in range(1, iRows): textList = sheet.row_values(i) name = textList[0] context = textList[2] float_dateTime = textList[1] date_value = xlrd.xldate_as_tuple(float_dateTime, workbook.datemode) date_value = datetime(*date_value[:5]) if datetime.now() > date_value: continue date_value = date_value.strftime('%Y-%m-%d %H:%M:%S') textList[1] = date_value scheduler.add_job(SentChatRoomsMsg, 'date', run_date=date_value,   kwargs={"name": name, "context": context}) print("任务" + str(index) + ":"   "待发送时间:" + date_value + ""    "待发送到:" + name + ""    "待发送内容:" + context + ""    "******************************************************************************") index = index + 1if index == 1: print("***没有任务需要执行***")scheduler.start()

最后

以上就是受伤早晨为你收集整理的netty 定时发送消息_Python3 itchat实现微信定时发送群消息的全部内容,希望文章能够帮你解决netty 定时发送消息_Python3 itchat实现微信定时发送群消息所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部