Skip to content

Instantly share code, notes, and snippets.

@waseeld
Last active June 25, 2020 16:57
Show Gist options
  • Save waseeld/617b4cc57e2c3e56ac694f86865d18f7 to your computer and use it in GitHub Desktop.
Save waseeld/617b4cc57e2c3e56ac694f86865d18f7 to your computer and use it in GitHub Desktop.
'''
python -m pip install pyautogui
python -m pip install keyboard
'''
import keyboard
import pyautogui
while True:
if(keyboard.is_pressed('z+z')):
pyautogui.click() # Run click in mouse
time.sleep(0.25)
# By twitter : @Dwaseel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment