0

Is there any possible way to get the display name of the monitor when there are multiple monitors in a system.I used get_monitors in the screeninfo module to get the resolution of the monitors.Is it possible to get the display name along with resolution?

surya
  • 75
  • 1
  • 2
  • 13

1 Answers1

0

I'm afraid the module you use only displays location and size of physical screens.

You could try using Powershell and subprocess to launch ps commands and parse their output like here: How to get info of all monitors with Python on Windows?

BoboDarph
  • 2,751
  • 1
  • 10
  • 15