Python Windows pega a captura de tela PIL

import PIL.ImageGrab

im = PIL.ImageGrab.grab()
im.show()
Lovely Llama