栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

Python实现微信和QQ消息轰炸!!!

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Python实现微信和QQ消息轰炸!!!

import time
from pynput.keyboard import Key, Controller as key_cl
from pynput.mouse import Button,Controller as mouse_cl
def keyboard_input(string):
    keyboard = key_cl()
    keyboard.type(string)   
def mouse_click():
    mouse = mouse_cl()
    mouse.press(Button.left)
    mouse.release(Button.left)
def send_message(number,string):
    print('The program will be excuted in 3 seconds')
    time.sleep(3)
    keyboard = key_cl()
    mouse_click()
    for i in range(number):
        print(i)
        keyboard_input(string)
        time.sleep(0.3)
        keyboard.press(Key.enter)
        keyboard.release(Key.enter)
if __name__=="__main__":
    s='你是小猪猪'
    send_message(10,s)
    #s为所要发送消息
    #10为发送次数
    #time.sleep(3)代表三秒后程序开始运行,你需要在限定时间内完成消息框定位单击操作

1.pip install pynput,安装pynput模块

2.自定义轰炸语句,自定义消息发送次数

3.运行代码

4.在设定时间之内将鼠标在微信消息框或者QQ消息框进行单击等待即可(不要移走!)

鼠标单击示例:

 

运行结果示例:

 如有兴趣可以设置循环,实现每次发送不同语句~

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/339856.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号