Untitled

 avatar
unknown
plain_text
10 months ago
285 B
9
Indexable
import pyautogui
from time import sleep

def abrirBloco():
    pyautogui.hotkey('win', 'r')
    sleep(0.5)
    pyautogui.typewrite('notepad')
    pyautogui.press('enter')

def print():
    pyautogui.screenshot('notepad.jpg',region=(1089,185,588,677))

abrirBloco()
print()
Editor is loading...
Leave a Comment