import argparse
from random import randint
from pyautogui import press, hold, countdown, size, moveTo
parser = argparse.ArgumentParser(description='Make songbook')
parser.add_argument('duration', type=int, nargs='?', default=40, help='how many cycle to loop')
parser.add_argument('-m', '--method', type=int, default=1, choices=[1, 2],help='1 - keyboard\n2 - mouse')
parser.add_argument('-f', '--frequency', type=int, default=59,help='how ofter action is triggered [s]')
args = parser.parse_args()
print(args)
def _action(method):
if method == 1:
with hold('alt'):
press('tab')
elif method == 2:
rx,ry = 600, 300
w,h = size()
cx, cy = w // 2 - rx // 2, h // 2 - ry // 2
ox, oy = randint(0, rx), randint(0, ry)
moveTo(cx + ox, cy + oy)
if __name__ == "__main__":
i = 0
cnt = args.duration
print(f'{int(cnt*args.frequency/60)}mins counter')
while True:
countdown(args.frequency)
_action(args.method)
i = i+1
if i > cnt:
exit(0)
break
print(f"{'-'*79}\nleft: {int((cnt-i)*args.frequency/60)}m\n{'-'*79}")