Приобрели ноутбук HP Pavilion 15-ex102ur.А вы подскажите сколько памяти и какой диск установлен.
def check_and_click():
try:
start = pyautogui.locateOnScreen('start.png', confidence=0.4)
return True
except:
print('Нет картинки, либо другая ошибка')
return False
def check_and_click2():
try:
startx2 = pyautogui.locateOnScreen('startx2.png', confidence=0.6)
return True
except:
print('Нет картинки, либо другая ошибка')
return False
#Тут вызовем функцию в цикле:
while True:
it = check_and_click()
if it:
pyautogui.click(start)
print("Good!")
time.sleep(1)
else:
print("Ждем 5 секунд")
time.sleep(5)
it2 = check_and_click2()
if it2:
pyautogui.click(startx2)
print("Good!")
time.sleep(1)
else:
print("Ждем 5 секунд")
time.sleep(5)
#!/usr/bin/env python3
import requests
from bs4 import BeautifulSoup
html = '<div class="dots-item"><a href="/index.php?r=crop/harvest&id=12245218"><img alt="Z" height="50" src="https://static/light/crops/gas_station.png" width="50"/></a><a href="/index.php?r=crop/harvest&id=12245218"><img alt="Harvest" class="crop_ico" src="https://static/i/../light/dots/st/dot-st-ready.png"/></a></div>'
soup = BeautifulSoup(html, 'html.parser')
href = soup.find('div', attrs = {'class':'dots-item'}).find('a').get('href')
print(href)
import requests
img_url = 'http://markof.fun/im/1.png'
headers = {'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'}
r = requests.get(img_url, headers=headers)
if r.status_code == 200:
with open('temp.png', 'wb') as f:
f.write(r.content)
else:
print('Error', r.status_code)