直接在pycharm输入命令即可
pin install wxpy
国内下载可能慢,推荐使用
pip install -U wxpy -i "https://pypi.doubanio.com/simple/"
1.导入登录模块
from wxpy import *
2.初始化机器人 扫码登陆
bot = Bot()
3.保存缓存 不用每次登录
bot = Bot(cache_path=True)
4.搜索好友
my_fiend = bot.friends().search('好友名字')
5.发送消息
my_fiend.send('你好')
6.发送图片
my_fiend.send_image('图片路径')
7.向文件助手发送消息
bot.file_helper.send('hello world!')