python⾃动发消息_如何利⽤python3实现定时⾃动发
消息和图⽚?
python代码:
import itchat
import time
itchat.auto_login(hotReload=True)
AutoList = ["",""]#需要发送消息的好友,可以不⽌⼀个
message = ""#需要发送的消息
path = ""#需要发送图⽚的位置
while True:
time_now = time.strftime("%H:%M:%S", time.localtime()) # 刷新
if time_now == "21:43:00": #此处设置每天定时的时间
for i in AutoList :
user2 = itchat.search_friends(name=i)
userName = user2[0]['UserName']
itchat.send(message,userName)
itchat.send_file(path,userName)python新手代码图案如何保存
time.sleep(1)
itchat.run()

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。