Created
May 19, 2021 17:18
-
-
Save keyan/3c7830572f372b500249a042ec69914b to your computer and use it in GitHub Desktop.
programmatic clicker, for reasons...
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
from pynput.mouse import Button, Controller | |
import time | |
mouse = Controller() | |
while True: | |
mouse.click(Button.left, 1) | |
print('sleeping...') | |
time.sleep(30) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment