Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagatochyan authored Feb 7, 2023
1 parent 2a87aad commit 81ead38
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
import keyboard
import mouse
while True:
while keyboard.is_pressed:
keyboard.send("a")
while keyboard.is_pressed:
keyboard.send("a")
while mouse.click('left'):
keyboard.send("a")
while mouse.click('right'):
keyboard.send("a")
while mouse.click('middle'):
keyboard.send("a")

0 comments on commit 81ead38

Please sign in to comment.