-
Notifications
You must be signed in to change notification settings - Fork 0
/
whatsapp.py
50 lines (36 loc) · 1.1 KB
/
whatsapp.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
import pyautogui
import webbrowser
from urllib.parse import quote
import time
def abrir_whatsapp(msg, user, num=None) -> None:
msg = quote(msg).strip()
if num is None:
num = input("> Digite um número de telefone (sem o 55): ")
else:
num = num.strip()
url = f"https://wa.me/{user.prefix}{num}?text={msg}"
webbrowser.open(url)
largura, altura = pyautogui.size()
centro_x = largura // 2
centro_y = altura // 2
pyautogui.moveTo(centro_x, centro_y - 180)
# Conferir se a bateria está fraca
bateria_fraca = False
if user.bateria:
if user.bateria.percent <= 20:
bateria_fraca = True
# definir o tempo de espera conforme a bateria
if bateria_fraca:
time.sleep(2.1)
else:
time.sleep(1.4)
r, g, b = pyautogui.pixel(centro_x, centro_y - 180)
# clicando no botao de iniciar conversa
if r == 18 and g == 140 and b == 126:
pyautogui.click()
pyautogui.moveTo(centro_x, centro_y - 120)
if bateria_fraca:
time.sleep(1.8)
else:
time.sleep(1.1)
pyautogui.click()