一 简介
wxpy基于itchat,使用了 Web 微信的通讯协议,,通过大量接口优化提升了模块的易用性,并进行丰富的功能扩展。实现了微信登录、收发消息、搜索好友、数据统计等功能。
总而言之,可用来实现各种微信个人号的自动化操作。(官网文档:http://wxpy.readthedocs.io/zh/latest/bot.html)
安装:wxpy 支持 Python 3.4-3.6,以及 2.7 版本
二 登录微信
from wxpy import *
bot=Bot(cache_path=True) # 一个Bot 对象可被理解为一个 Web 微信客户端。cache_path 提供了缓存的选项,用于将登录信息保存下来,就不用每次都扫二维码
三 案例
from pyecharts import Map
import webbrowser # 文档https://docs.python.org/3/library/webbrowser.html
from wxpy import *
from collections import defaultdict bot = Bot(cache_path=True)
friends = bot.friends() areas = defaultdict(lambda :0)
for item in friends:
areas[item.province] += 1 attr = areas.keys()
value = areas.values() map = Map("好友分布图", width=1400, height=700)
map.add("", attr, value, maptype='china',is_visualmap=True,is_label_show=True)
map.render('province.html')
webbrowser.open('province.html')
01.微信好友地域分布
# 自动给指定的人回复
from wxpy import * bot = Bot(cache_path=True) # 从好友中查找名字叫:林 的人,模糊匹配,可能查出多个人,取出第0个
father = bot.search('林')[0] @bot.register() # 用于注册消息配置
def recv_send_msg(recv_msg):
print('收到的消息:', recv_msg.text) # recv_msg.text取得文本
# recv_msg.sender 就是谁给我发的消息这个人
if recv_msg.sender == father:
recv_msg.forward(bot.file_helper,prefix='老爸留言: ') # 在文件传输助手里留一份,方便自己忙完了回头查看
ms = '祝早日康复!'
return ms # 回复 embed() # 进入交互式的 Python 命令行界面,并堵塞当前线程支持使用 ipython, bpython 以及原生 python
02.自动给某人回复
from wxpy import *
bot=Bot(cache_path=True)
# 查找群
company_group=bot.groups().search('群名字')[0]
# 查找群里的某个人
boss=company_group.search('老板名字')[0] # 只有company_group这个群发的消息,才会调用这个函数,其他的不会调用
@bot.register(chats=company_group) #接收从指定群发来的消息,发送者即recv_msg.sender为组
def recv_send_msg(recv_msg):
print('收到的消息:',recv_msg.text)
# recv_msg.sender 是群这个对象
if recv_msg.member == boss:
#这里不用recv_msg.render 因为render是群的名字
# recv_msg.forward(bot.file_helper,prefix='老板发言: ')
return '老板说的好有道理,深受启发' embed()
03.给群中某个人回复
import json
import requests
from wxpy import * bot = Bot(cache_path=True) # 调用图灵机器人API,发送消息并获得机器人的回复
def auto_reply(text):
url = "http://www.tuling123.com/openapi/api"
api_key = "9df516a74fc443769b233b01e8536a42"
payload = {
"key": api_key,
"info": text,
}
# 接口要求传json格式字符串,返回数据是json格式
result= requests.post(url, data=json.dumps(payload)).json()
# result = json.loads(r.text)
return "[来自智能机器人] " + result["text"] @bot.register()
def forward_message(msg):
print(msg.tex)
return auto_reply(msg.text) embed()
04.调用图灵机器人api自动回复
参考:
1.https://www.cnblogs.com/liuqingzheng/articles/9079192.html