sysinfo
sysinfo copied to clipboard
a python script to get hardware information summary
Results
1
sysinfo issues
Sort by
recently updated
recently updated
newest added
https://github.com/Alwayswithme/sysinfo/blob/6a44e993dd38108a5736f31a142d73e8f75f6660/sysinfo.py#L27 Using `@staticmethod` should be sufficient as nothing depends on `cls` self variable. ``` @staticmethod def product(): cmd = 'dmidecode -s system-product-name | head -1' output = sh(cmd, True) return...