Answers for "make auto clicker using python"

12

python auto clicker

#you need to install pyautogui like this:
#py.exe -m pip install pyautogui
#then...
import pyautogui,time
while True:
    pyautogui.click(100,100)
    time.sleep(0.5)
Posted by: Guest on April-08-2020
2

auto clicker in python

import pyautogui
import time

def click(): 
    time.sleep(0.5)     
    pyautogui.click()

def main():
    for i in range(10):#you can set how much times you have to click in range(no. of times to click) 
        click()

main()
Posted by: Guest on September-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language