-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathmain.py
102 lines (72 loc) · 2.45 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = "ipetrash"
import logging
import time
import traceback
import sys
from datetime import date
# pip install pyautogui
# pip install pillow
import pyautogui
# pip install psutil
import psutil
# pip install schedule
import schedule
pyautogui.FAILSAFE = False
logging.basicConfig(
level=logging.INFO,
format="[%(asctime)s] %(filename)s:%(lineno)d %(levelname)-8s %(message)s",
stream=sys.stdout,
)
def is_exists_rdp_process() -> bool:
return any(process.name() == "mstsc.exe" for process in psutil.process_iter())
def get_pos_rdp_task_icon() -> tuple[int, int] | None:
try:
return pyautogui.locateCenterOnScreen("RDP_task_icon.png", minSearchTime=5)
except:
pass
def run():
logging.info("")
logging.info("Run")
if date.today().weekday() in [5, 6]:
logging.info("Today is a weekend, skip")
return
if not is_exists_rdp_process():
logging.info("RDP is not running!")
return
try:
# Сделаем скриншот, чтобы проверить, что после клика
# картинка поменяется (ждем пока свернутся окна)
img = pyautogui.screenshot()
for _ in range(5):
# Свернуть все окна
pyautogui.hotkey("win", "d")
time.sleep(2)
if img != pyautogui.screenshot():
break
pos = get_pos_rdp_task_icon()
logging.info(f"1. get_pos_rdp_task_icon: {pos}")
if not pos:
# Нужно сдвинуть курсор туда, где точно не может находиться кнопка задачи RPD,
# это поможет если курсор уже находится на кнопке задачи RDP
pyautogui.moveTo(300, 300)
time.sleep(2)
pos = get_pos_rdp_task_icon()
logging.info(f"2. get_pos_rdp_task_icon: {pos}")
if pos:
pyautogui.click(*pos)
logging.info("Click")
except Exception:
print(traceback.format_exc())
if __name__ == "__main__":
logging.info("Started...")
# Каждый день в 08:30
schedule.every().day.at("08:30").do(run)
logging.info("Jobs:")
for job in schedule.jobs:
logging.info(f" {job!r}")
logging.info("")
while True:
schedule.run_pending()
time.sleep(1)