Provides python interface to database stored in hwdata package. It allows you to get human readable description of USB and PCI devices.
#!/usr/bin/python
from hwdata import PCI, USB, PNP
# for obtaining real id of your devices you can use package python-gudev
pci_vendor_id = '1002'
pci_device_id = '687f'
pci_subsystem_id = '1043:04c4'
usb_vendor_id = '03f0'
usb_device_id = '1f12'
pci = PCI()
print("Vendor: %s" % pci.get_vendor(pci_vendor_id))
print("Device: %s" % pci.get_device(pci_vendor_id, pci_device_id))
print("Subsystem: %s" % pci.get_subsystem(pci_vendor_id, pci_device_id, pci_subsystem_id))
usb = USB()
print("Vendor: %s" % usb.get_vendor(usb_vendor_id))
print("Device: %s" % usb.get_device(usb_vendor_id, usb_device_id))
pnp = PNP()
print("Vendor: %s" $ pnp.get_vendor('AAA'))
https://github.com/xsuchy/python-hwdata
When you run:
tito build --tgz
you will get latest tar.gz file.
When you run:
tito build --rpm
you will get latest rpm package.
This package is present in Fedora and EPEL. You should be able to just dnf install python-hwdata
.
GPL-2.0-or-later