Computer and IT knowledge - things to know
#https://automatetheboringstuff.com/chapter18/
#pip install pyscreenshot
#pip install pyautogui
#
#if you have all screenshots just print them to a pdf printer, like explained here:
#https://www.howtogeek.com/248462/how-to-combine-images-into-one-pdf-file-in-windows/
import pyautogui
import pyscreenshot as ImageGrab
import time
if __name__ == '__main__':
pyautogui.PAUSE = 1
pyautogui.FAILSAFE = True
x=1860
y=530
#hochformat
x=1053
y=955
pyautogui.moveTo(x, y, duration=0.25)
for i in range(1125):
pyautogui.click(x, y, duration=0.25)
#time.sleep(1)
#im=ImageGrab.grab(bbox=(994,90,1708,1000)) # X1,Y1,X2,Y
#hochformat
im=ImageGrab.grab(bbox=(60,305,1026,1600)) # X1,Y1,X2,Y
#time.sleep(1)
im.save('img/screenshot_'+str(i)+'.png')
computer2know :: thank you for your visit :: have a nice day :: © 2024