首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    Python检测删除你的好友-wxpy模

    from wxpy import * import time print("本软件采用特殊字符检测,即对方收不到任何信息!") print("或许某个版本微信就会修复该字符了,不作通知哈!") print("软件编写日期:2019-2-20!") input("任意键继续...(非电源键)") try:     bot = Bot()#机器人对象     all_friends = bot.friends()#把微信所有好友放进列表     for i in all_friends:         try:             print("检测 "+i.name+" 中...")#如果好友备注有表情这句会报错,所以报错直接跳过         except:             pass         try:             i.send('జ్ఞ ‌ా')#发送检测字符         except:             pass         time.sleep(2) #延时防频繁     bot.file_helper.send('检测结束,请退出网页微信!')#通过文件传输助手发送检测结束     bot.logout()

    02
    领券