comparison python/lsusb.py @ 112:056face59ee7

Added lsusb script
author Windel Bouwman
date Fri, 04 Jan 2013 18:40:05 +0100
parents
children 654093a9a1e3
comparison
equal deleted inserted replaced
111:d3068efdf045 112:056face59ee7
1 #!/usr/bin/python
2
3 from usb import UsbContext
4
5 context = UsbContext()
6 for d in context.DeviceList:
7 print(d)
8