Last active
March 22, 2018 12:37
-
-
Save hyp3ri0n-ng/93ca5fe655f5901c94fba9ca8b6dda63 to your computer and use it in GitHub Desktop.
Makes your mouse a clicking machine! Every 0.1 seconds your mouse will click. Good for annoying semi-automation needed for websites and general tomfoolery. Make sure to install pyautogui with `pip install pyautogui` before running thi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyautogui | |
import time | |
time.sleep(10) | |
while True: | |
pyautogui.click() | |
time.sleep(0.1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pip install pyautogui
in your favorite venv and you're good to go