博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单小练习_自动拉微信群
阅读量:5312 次
发布时间:2019-06-14

本文共 984 字,大约阅读时间需要 3 分钟。

from wxpy import *import timebot = Bot()def listen(pwd):    time.sleep(3)    return [msg for msg in bot.messages if msg.text == pwd]def add_group(users,group):    try:        group.add_members(users,use_invitation=True)    except ResponseError:        return Nonedef get_newfren(say):    time.sleep(3)    return [msg for msg in bot.messages if msg == say]group = bot.groups().search('test group 1')[0]while True:    new_fren = get_newfren('make friend')    if new_fren:        print('find new one!')        for msg in new_fren:            new_user = msg.card            bot.accept_friend(new_user)            new_user.send('hi new friend')            bot.messages.remove(msg)    time.sleep(3)    print('running')    selected = listen('pull me in')    if selected:        print('find a new friend')        for msg in selected:            this_user = msg.sender            add_group(this_user,group)            bot.messages.remove(msg)

 

转载于:https://www.cnblogs.com/Erick-L/p/9182658.html

你可能感兴趣的文章
笛卡尔积和卡氏积
查看>>
看图说话,jquery中的width innerwidth outerwidth
查看>>
[INS-30060]:Check for group existence failed
查看>>
javaIO详解、包含文件以及流操作
查看>>
如何使用Leangoo自动生成燃尽图
查看>>
[转]IOCP--Socket IO模型终结篇
查看>>
为什么需要ObjectDataProvider
查看>>
Eclipse(非J2EE版本)配置Extjs环境以及安装部署Tomcat
查看>>
网页中搜索框效果原理。
查看>>
SpringBoot实战 之 异常处理篇
查看>>
【转】【OPenGL】opengl 64位 配置 freeglutx64下载
查看>>
Bootstrap 基础
查看>>
设计模式 之 工厂模式
查看>>
哈夫曼树及解码
查看>>
七大技巧保护无线网络,蹭网卡什么的都是浮云!
查看>>
Sql数据库收缩 语句特别快
查看>>
生成四位随机数的PHP代码
查看>>
Cocos2d-x 2.x 升级为 3.x 常见变化纪录
查看>>
Memcached
查看>>
项目启动报错java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind
查看>>