USBView/Python 中的设备管理器
如何在Python中访问设备管理器,以便我可以通过Python获取USB设备的序列号/其他信息?
How can I access Device Manager in python, so that i can get the usb device's serial number/other info through python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过PyUSB:
现在,迭代
allDevs
以获取有关已连接设备的信息。Instead of using the Device Manager (A graphical application), you can programmatically access information about USB devices via PyUSB:
Now, iterate over
allDevs
to get information about connected devices.