[Python] iupdatable包:获取电脑主板信息(csproduct)

一、说明

使用命令行就可以获取到主板相关的信息

wmic csproduct get /value

输出内容如下:

Caption=Computer System Product
Description=Computer System Product IdentifyingNumber=PDVC400012152042979202
Name=Veriton M4610G
SKUNumber=
UUID=A2DC9CC8-30A8-1120-1228-222416000000
Vendor=Acer
Version=

iupdatable包对该部分功能进行了封装

二、简单示例

安装 iupdatable 包

pip install --upgrade iupdatable

使用实例:

from iupdatable.system.hardware import CSProduct

# 一次性获取所有的CSProduct信息
cs_product = CSProduct.get()
print("CSProduct: " + str(cs_product))
print(cs_product["Caption"])

# 或者
# 使用各项函数单独获取
print("Caption: " + CSProduct.get_caption())
print("Description: " + CSProduct.get_description())
print("IdentifyingNumber: " + CSProduct.get_identifying_number())
print("Name: " + CSProduct.get_name())
print("SKUNumber: " + CSProduct.get_sku_number())
print("UUID: " + CSProduct.get_uuid())
print("Vendor: " + CSProduct.get_vendor())
print("Version: " + CSProduct.get_version())

输出:

CSProduct: {‘Caption‘: ‘Computer System Product‘, ‘Description‘: ‘Computer System Product‘, ‘IdentifyingNumber‘: ‘PDVC400012152042979202‘, ‘Name‘: ‘Veriton M4610G‘, ‘SKUNumber‘: ‘‘, ‘UUID‘: ‘A2DC9CC8-30A8-1120-1228-222416000000‘, ‘Vendor‘: ‘Acer‘, ‘Version‘: ‘‘}
Computer System Product
Caption: Computer System Product
Description: Computer System Product
IdentifyingNumber: PDVC400012152042979202
Name: Veriton M4610G
SKUNumber:
UUID: A2DC9CC8-30A8-1120-1228-222416000000
Vendor: Acer
Version: 

原文地址:https://www.cnblogs.com/IUpdatable/p/12500012.html

时间: 2024-11-10 22:46:59

[Python] iupdatable包:获取电脑主板信息(csproduct)的相关文章

python使用psutil获取服务器信息

>>> import psutil 获取cpu信息>>> psutil.cpu_times()scputimes(user=128258.38, nice=12.29, system=88369.31, idle=6713420.33, iowait=3290.63, irq=1069.04, softirq=3368.56, steal=0.0, guest=0.0) >>> psutil.cpu_times().idle 6717807.87 获取

Python 面向对象编程——获取对象信息

1.1   获取对象信息 1.1.1   使用type()判断对象类型 >>> type(123)    --基本数据类型判断 <class 'int'> >>> type('123') <class 'str'> >>> type(abs)    --python内置函数的判断 <class 'builtin_function_or_method'> >>> type(Dog) <class

[Python] iupdatable包:日志模块使用介绍

一.说明 日志模块是对 logging 模块的单例封装 特点: 可同时向控制台和文件输出日志,并可选择关闭其中一种方式的输出: 集成colorlog,实现根据日志等级不同,控制台输出日志颜色不同: 灵活切换是否输出调试内容 二.简单示例 安装 iupdatable 包 pip install --upgrade iupdatable 使用实例: 1 from iupdatable.logging.Logger import Logger 2 from iupdatable.logging.Log

Python+selenium之获取验证信息

通常获取验证信息用得最多的几种验证信息分别是title,URL和text.text方法用于获取标签对之间的文本信息. 代码如下: from selenium import webdriverimport timedriver = webdriver.Firefox()driver.get("http://XXX.XXX.XXX.XXX/oneCard/login")#打印当前页面titletitle = driver.titleprint(title)#打印当前页面的URLnow_ur

python 面向对象五 获取对象信息 type isinstance getattr setattr hasattr

一.type()函数 判断基本数据类型可以直接写int,str等: 1 >>> class Animal(object): 2 ... pass 3 ... 4 >>> type(123) 5 <class 'int'> 6 >>> type('123') 7 <class 'str'> 8 >>> type(None) 9 <class 'NoneType'> 10 >>> ty

Python快速学习-获取对象信息

1type() 获取对象的基本类型,判断两个对象类型. 2types 判断对象是否是函数,使用前要引入import types 3isinstance() 判断class类型,判断一个变量是否是某种类型中的一种,基本上能用type判断,都可以用isinstance. 4.dir() 获取对象的所有属性和方法.

python执行shell获取硬件参数写入mysql

最近要获取服务器各种参数,包括cpu.内存.磁盘.型号等信息.试用了Hyperic HQ.Nagios和Snmp,它们功能都挺强大的,但是于需求不是太符,亦或者太heavy. 于是乎想到用python执行shell获取这些信息,python执行shell脚本有以下三种方法: 1. os.system() os.system('ls')#返回结果0或者1,不能得到命令的输出 2. os.popen() output = os.popen('ls') print output.read()#打印出的

运用Python语言编写获取Linux基本系统信息(三):Python与数据库编程,把获取的信息存入数据库

运用Python语言编写获取Linux基本系统信息(三):Python与数据库编程 有关前两篇的链接: 运用Python语言编写获取Linux基本系统信息(一):获得Linux版本.内核.当前时间 运用Python语言编写获取Linux基本系统信息(二):文件系统使用情况获取 一.实验环境: Python2.7.10.pycharm.VM虚拟机.CentOS6.3.mysql 二.MySQLdb模块: MySQLdb模式是Python中专门连接MySQL数据库的模块,另外Python开发环境的搭

纯JAVA环境获取APK信息(包名,版本,版本号,大小,权限...),纯JAVA语言编写PC端获取APK信息

纯JAVA环境获取APK信息:包名,版本,版本号,大小,权限... 纯Java环境获取APK信息需要两个包:AXMLPrinter2.jar 跟jdom.jar,用于反编译XML和解析XML的 项目目录 这个类是获取APK信息的 public class ApkUtil { private static final Namespace NS = Namespace.getNamespace("http://schemas.android.com/apk/res/android"); @