Last active
June 25, 2020 16:57
-
-
Save waseeld/617b4cc57e2c3e56ac694f86865d18f7 to your computer and use it in GitHub Desktop.
This file contains 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
''' | |
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