This commit is contained in:
BarsTiger
2021-04-23 13:06:38 +03:00
parent 1fc46a4779
commit f98a6be342
25 changed files with 855 additions and 0 deletions

View File

@@ -0,0 +1 @@
To stop program, press and hold Ctrl + 1

View File

@@ -0,0 +1,16 @@
import keyboard
import time
print("Auto page restarter by BarsTiger")
print("You have 5 sec for going to browser")
time.sleep(5)
while True:
keyboard.press("ctrl")
keyboard.press("r")
time.sleep(0.5)
keyboard.release("ctrl")
keyboard.release("r")
time.sleep(0.5)
if keyboard.is_pressed("ctrl") and keyboard.is_pressed("1"):
exit()