Python ScreenInfo

from screeninfo import get_monitors
for m in get_monitors():
    print(str(m))
Poor Pigeon