加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
wxpy_聊天机器人.py 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
fengmingshan 提交于 2021-12-15 20:46 . 找回资料提交
# -*- coding: utf-8 -*-
# @Author: Administrator
# @Date: 2019-10-24 19:37:06
# @Last Modified by: Administrator
# @Last Modified time: 2019-10-24 23:09:26
from wxpy import *
import os
data_path ='D:/Test/wxpy'
os.chdir(data_path)
bot = Bot(console_qr = 2)
bot.messages.max_history = 10000
my_group = bot.groups().search('我们8班')[0]
my_friend = bot.friends().search('刘燕')[0]
@bot.register(my_friend)
def just_print(msg):
# 打印消息
print(msg)
bot.file_helper.send('Hello from wxpy!')
# 堵塞线程,并进入 Python 命令行
embed()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化