Read some procedures used to brush the screen, or can only brush the screen QQ, or can only brush the screen wechat, today the blogger to achieve it together, and the use of super simple oh!! , hope can help you!



No more nonsense, first on the code, and then in detail!!

from pynput import mouse, keyboard
from tkinter import *
import tkinter.filedialog
import time
root=Tk()
root.title("Message deluge")
root.geometry("550x200+500+300")
lb=Label(root,text='Warm reminder: be careful to be deleted!! ',bg='red',font=('Chinese Script'.15))
lb.grid(row=0,column=0)
lb=Label(root,text="Please enter what to send:",font=('Chinese Script'.15))
lb.grid(row=2,column=0)
entry1=Entry(root,font=('Arial'.15))
entry1.grid(row=2,column=1)
lb=Label(root,text="Please enter the number of times you want to send:",font=('Chinese Script'.15))
lb.grid(row=3,column=0)
entry2=Entry(root,font=('Arial'.15))
entry2.grid(row=3,column=1)
m=mouse.Controller()
k=keyboard.Controller()
def anjian() :
          m.position=(69.803)
          time.sleep(0.5)
          m.click(mouse.Button.left)
          for i in range(int(entry2.get())):
                    time.sleep(0.2)
                    k.type(entry1.get())
                    time.sleep(0.5)
                    k.press(keyboard.Key.enter)
                    k.release(keyboard.Key.enter)
                        
btn=Button(root,text="Refresh",font=('Chinese Script'.12),relief="raised", width=8, height=1,bd="6",command=anjian)
btn.grid(row=4,column=1)
root.mainloop()


Copy the code

Using the tutorial1. Before running the program, you need to install a third-party library (PyNput library). The specific installation process is not described here, please refer to itThird party library installation2. After the program is running, you will see the following interface:3. Open the QQ or wechat chat screen to be flooded, and maximize (remember to maximize oh!!) , such as:

4. In the last step, enter the content and frequency of screen brushing on the screen brushing program interface, and then click “Screen brushing”, for example:

Wechat demo:QQ demo:



If it helps you remember to like and follow oh, your like power is the motivation of the blogger’s creation …………