How can PyUSB be understood? [closed]

主宰稳场 提交于 2019-12-12 03:48:59

问题


I am unable to proceed on how PyUSB works. I am stuck for a week now. How do I proceed?


回答1:


At first glance, documentation for PyUSB seems to be entirely absent. But not so.

From a Python prompt you can:

 >>> import usb
 >>> help(usb)

And it turns out to have documentation!

 >>> help(usb.core)

Was quite useful. It seems quite straightforward.



来源:https://stackoverflow.com/questions/5178445/how-can-pyusb-be-understood

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!