gpt4 book ai didi

python - 如何在 Windows 上使用 Python 读取系统信息?

转载 作者:可可西里 更新时间:2023-11-01 11:05:18 27 4
gpt4 key购买 nike

从此OS-agnostic question , 具体来说 this response ,类似于 Linux 上的/proc/meminfo 等可用数据,我如何使用 Python 从 Windows 读取系统信息(包括但不限于内存使用情况)。

最佳答案

在 Windows 中,如果你想从 SYSTEMINFO 命令中获取信息,你可以使用 WMI module.

import wmi

c = wmi.WMI()
systeminfo = c.Win32_ComputerSystem()[0]

Manufacturer = systeminfo.Manufacturer
Model = systeminfo.Model

...

类似地,可以从 osinfo = c.Win32_OperatingSystem()[0] 获取与操作系统相关的信息system info is here的完整列表和 os info is here

关于python - 如何在 Windows 上使用 Python 读取系统信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/467602/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com