Module for Auto Clicker in Python

Viewed 13

I am trying to figure out a module where i can simulate a click in python

what i have so far:

import pyautogui
import time
while True:
    pyautogui.click(100,100)
    time.sleep(0.5)

pyautogui wont install properly

0 Answers
Related