화면보호기 방지
-
[Python] 화면보호기 방지프로그래밍 2019. 12. 20. 14:15
뭘 돌려야하는데 자꾸 화면보호기가 짜증나게 해서 돌아가는 2시간동안 방해받지 말라고 방금 만듬 1분마다 마우스가 알아서 돌아다님 import time import pyautogui import random from datetime import datetime screenWidth, screenHeight = pyautogui.size() #화면 전체 크기를 출력(화면 해상도) print('{}, {}'.format(screenWidth, screenHeight)) cnt = 0 while True : ran_width = random.randint(1, screenWidth) ran_height = random.randint(1, screenHeight) #마우스를 2초동안 ran_width, ran_h..