Posts

Showing posts from September, 2022

SPAM BOT YT

 Source code :-  ''' Created by Mandeep Yadav ''' import pyautogui import time comment = pyautogui.prompt(text= "" ,title= "Enter the commment :- " ) numberoftimes = pyautogui.prompt(text= "" ,title= "How many times" ) wait = pyautogui.prompt(title= "wait for 10 sec" ) time.sleep( 10 ) number = 0 for i in range( 0 ,int(numberoftimes)):     number += 1     print(number)     pyautogui.click()     pyautogui.write(comment)     pyautogui.hotkey( "enter" )     time.sleep( 0 )