码迷,mamicode.com
首页 > 微信 > 详细

python特定时间发送消息到微信公众号

时间:2019-04-26 11:10:45      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:star   sleep   好友   imp   扫码登陆   time   start   arc   ima   

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# __author__ = ‘James‘
# 导入模块
from wxpy import *
import time, datetime
# 初始化机器人,扫码登陆
bot = Bot(cache_path=‘shuangkai.pkl‘)

# 搜索名称含有 "游否" 的男性深圳好友
my_friend = bot.friends().search(‘ruby‘)[0]
# 发送文本给好友
my_friend.send(‘Hello WeChat!‘)
# 发送图片
# my_friend.send_image(‘my.jpg‘)



aoti = bot.mps().search(‘海峡奥体中心‘)[0]


startTime = datetime.datetime(2019, 4, 26, 12, 0, 0)
print(‘Program not starting yet...‘)
while datetime.datetime.now() < startTime:
time.sleep(0.1)
print(‘Program now starts on %s‘ % datetime.datetime.now())
print(‘Executing...‘)
aoti.send(‘我爱海峡奥体中心
my_friend.send(‘已经发送奥体信息!‘)

embed()

python特定时间发送消息到微信公众号

标签:star   sleep   好友   imp   扫码登陆   time   start   arc   ima   

原文地址:https://www.cnblogs.com/cute/p/10773038.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!