香港云主机最佳企业级服务商!

ADSL拨号VPS包含了中国大陆(联通,移动,电信,)

中国香港,国外拨号VPS。

当前位置:云主机 > python >

电信ADSL拨号VPS
联通ADSL拨号VPS
移动ADSL拨号VPS

python实现给微信指定好友定时发送消息


时间:2022-04-02 10:32 作者:admin610456


python/' target='_blank'>python有很多有趣的库,其中wxpy是连接微信的接口,具体可以查看官方文档。可以实现自动操作,wxpy 支持 Python 3.4-3.6,以及 2.7 版本。

一、安装

win10环境,直接在cmd中,输入

pip install wxpy

有时网络不稳定,可能出现错误,重新执行操作尝试一下。

二、简单介绍

# 导入模块from wxpy import *# 初始化机器人,扫码登陆bot = Bot()
# 搜索名称含有 "游否" 的男性深圳好友my_friend = bot.friends().search('游否', sex=MALE, city="深圳")[0]

三、详细代码

打开cmd,执行jupyter notebook,打开ipython环境,在打开的浏览器页面中,新建一个python3的ipynb文件。

from __future__ import unicode_literalsfrom threading import Timerfrom wxpy import *import requests bot = Nonedef get_news(): #获取一个连接中的内容 url = "http://open.iciba.com/dsapi/" r = requests.get(url) print(r.json()) contents = r.json()['content'] translation = r.json()['translation'] return contents,translationdef login_wechat(): global bot bot = Bot() # bot = Bot(console_qr=2,cache_path="botoo.pkl")#linux环境上使用def send_news(): if bot == None:  login_wechat() try:  my_friend = bot.friends().search(u'xxx')[0] #xxx表示微信昵称  my_friend.send(get_news()[0])  my_friend.send(get_news()[1][5:])  my_friend.send(u"咦?我是自动人!!")  t = Timer(360, send_news) #360是秒数  t.start() except:  print(u"失败!!")if __name__ == "__main__": send_news() print(get_news()[0])

然后按ctrl+enter键执行。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

(责任编辑:admin)






帮助中心
会员注册
找回密码
新闻中心
快捷通道
域名登录面板
虚机登录面板
云主机登录面板
关于我们
关于我们
联系我们
联系方式

售前咨询:17830004266(重庆移动)

企业QQ:383546523

《中华人民共和国工业和信息化部》 编号:ICP备00012341号

Copyright © 2002 -2018 香港云主机 版权所有
声明:香港云主机品牌标志、品牌吉祥物均已注册商标,版权所有,窃用必究

云官方微信

在线客服

  • 企业QQ: 点击这里给我发消息
  • 技术支持:383546523

  • 公司总台电话:17830004266(重庆移动)
  • 售前咨询热线:17830004266(重庆移动)