Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

py spam message

import pyautogi as spam
import time

def spammsg():
    limit = input("Enter the number of message :")
    msg = input("The message :")
    i = 0
    print("You have 5 seconds to go to your messenger and click !")
    time.sleep(5)  
    while i < int(limit):
        spam.typewrite(msg)
        spam.press('Enter')
        i += 1
        
spammsg()
Comment

PREVIOUS NEXT
Code Example
Python :: how to unzip files using zipfile module python 
Python :: change the default python version mac 
Python :: python cube turtle 
Python :: send image discord.py 
Python :: python os output to variable 
Python :: nodemon python 
Python :: iterate over rows dataframe 
Python :: how to create a object in djago views model 
Python :: get median of column pandas 
Python :: how to dynamically access class properties in python 
Python :: cv2 videocapture nth frame 
Python :: read image python 
Python :: clear console in python 
Python :: py check discord token 
Python :: creating an interface tkinter 
Python :: django return only part of string 
Python :: random numbers in python 
Python :: heatmap(df_train.corr()) 
Python :: close selenium webdriver python 
Python :: calculate highest frequency or mode in pandas dataframe 
Python :: matplotlib set size 
Python :: python extract name out of mail 
Python :: python list of random float numbers 
Python :: django import settings 
Python :: corona shape in python 
Python :: get current file location 
Python :: python requests pass auth token 
Python :: how to input multiple integers in python 
Python :: python afficher hello world 
Python :: The name tf.train.Optimizer is deprecated. Please use tf.compat.v1.train.Optimizer instead. 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =