Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

spammer bot python

# You need pyautogui module for this - pip install pyautogui

import pyautogui
import time

choice = int(input("Do you want to spam
 1.text
2.file
"))


def text():
	text = input("Enter your message here: 
")
	num = int(input("How many times you wanna spam it? 
"))
	entr = input("Press Enter to start")
	time.sleep(4)
	a = 0
	while a<num:
		pyautogui.write(text, interval=0.001)  # type with quarter-second pause in between each key
		pyautogui.press('enter')
		a = a+1


def image_():
	print("Please copy the file you want to send
")
	num = int(input("How many times you wanna spam it? 
"))
	entr = input("Press Enter to start")
	time.sleep(5)
	a = 0
	while a<num:
		pyautogui.hotkey('ctrl', 'v')
		pyautogui.press('enter')
		a = a+1


if choice==1:
	text()
elif choice==2:
	image_()
Comment

python spamming bot

# python3
import pyautogui

for i in range(1, 100):
    pyautogui.write('Hiiiiiiiiiii
') # write the message with pyautogui and return line
Comment

PREVIOUS NEXT
Code Example
Python :: working directory python 
Python :: convert column string to int pandas 
Python :: python except error as e 
Python :: how to identify GPU with pytorch script 
Python :: PackagesNotFoundError: The following packages are not available from current channels: - python==3.6 
Python :: python read file line by line 
Python :: get python script path 
Python :: copy image from one folder to another in python 
Python :: Can only use .dt accessor with datetimelike values 
Python :: shuffle dataframe python 
Python :: selenium python get innerhtml 
Python :: python get filename from path 
Python :: numpy to csv 
Python :: ndarray to pil image 
Python :: how to change window size in kivy python 
Python :: python - convert a column in a dataframe into a list 
Python :: how copy and create same conda environment 
Python :: numpy get index of nan 
Python :: how to read tsv file python 
Python :: how to get the size of an object in python 
Python :: ticks font size matplotlib 
Python :: correlation between lists python 
Python :: how to install python3 on ubuntu 
Python :: is machine learning hard 
Python :: pyspark distinct select 
Python :: pytest skip 
Python :: python how to find the highest number in a dictionary 
Python :: python levenshtein distance 
Python :: lcm math python library 
Python :: get files in directory python 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =