Skip to content

Instantly share code, notes, and snippets.

@hyp3ri0n-ng
Last active March 22, 2018 12:37
Show Gist options
  • Save hyp3ri0n-ng/93ca5fe655f5901c94fba9ca8b6dda63 to your computer and use it in GitHub Desktop.
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
import pyautogui
import time
time.sleep(10)
while True:
pyautogui.click()
time.sleep(0.1)
@hyp3ri0n-ng
Copy link
Author

pip install pyautogui in your favorite venv and you're good to go

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment