1

I would like to get windows 10 device specifications pen and touch properties with python

enter image description here

I try to use two ways :

  1. systeminfo in command line
  2. msinfo32

Both ways did not find the answer,Is there any way to get this?

I expect that there can be Python Package or other methods

acs123
  • 49
  • 4

1 Answers1

1

you can use pyglet module to get all devices connected to your pc/laptop

first install pyglet pip install pyglet

code

import pyglet

devices = pyglet.input.get_devices()
print(devices)

reference question here

pyglet docs

CYCNO
  • 88
  • 8