find a pixel on the screen that has an rgb value python code example
Example: how to get RGB value from pixel in screen live python
import PIL.ImageGrab
rgb = PIL.ImageGrab.grab().load()[x,y]
import PIL.ImageGrab
rgb = PIL.ImageGrab.grab().load()[x,y]