Skip to content

Commit

Permalink
Keyboard_Simulate
Browse files Browse the repository at this point in the history
Simulate keyboard every few secs, or spam my teammates on slack
  • Loading branch information
anchalraheja authored Sep 25, 2021
1 parent 6a05432 commit 1ddb968
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions keyboard_simulate.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from pyautogui import press, typewrite, hotkey
import time
FAILSAFE = True

time.sleep(1.5)

for x in range(1,5000):
time.sleep(10)
y = str(x)
typewrite(y)
hotkey('enter')

0 comments on commit 1ddb968

Please sign in to comment.