proarbeit/proarbeit.py

22 lines
418 B
Python
Raw Normal View History

2020-07-28 13:24:50 +02:00
from mouse import get_position, move
2020-07-28 15:31:55 +02:00
from secrets import randbelow
2020-07-28 12:42:19 +02:00
from time import sleep
2020-07-28 13:24:50 +02:00
def erratic_movement(screen_width, screen_height):
move(
2020-07-28 15:31:55 +02:00
randbelow(screen_width), randbelow(screen_height),
2020-07-28 13:24:50 +02:00
)
2020-07-28 12:42:19 +02:00
def main():
2020-07-28 15:31:55 +02:00
screen_width = 800
screen_height = 600
2020-07-28 12:42:19 +02:00
while True:
2020-07-28 13:24:50 +02:00
erratic_movement(screen_width, screen_height)
sleep(randbelow(90))
2020-07-28 12:42:19 +02:00
if __name__ == "__main__":
main()