Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以通过python知道这些信息吗?例如,卡图形的名称,处理器,音频,主板....
Python 本身没有任何东西。您可以通过平台模块检测您使用的操作系统。否则
也可以看看:
如果您使用的是 Windows,您可能可以使用 PyWin32 来获取其中的一些信息。请参阅以下食谱以了解您可以获得的一些东西:
我还在这里写了一些关于获取 Windows 系统信息的内容:
您也许可以使用 HAL:
我还发现psutil 项目非常有帮助。我也遇到了PyCPU,虽然我不确定它的状态是什么。
对于 Linux(可能还有 Mac),您可能必须使用通过 Python 的 subprocess 模块调用的系统命令并解析结果。