
# https://www.globalsino.com/ICs/
# Find the color of a pixel on the screen

import pyautogui as pg
import time

# During the time, move the mouse to the point you want to know
# the color of the pixel on the screen
time.sleep(3)

im =pg.screenshot()

thePosition = pg.position()
print(im.getpixel((thePosition[0], thePosition[1])))


