如何在 Python 中返回系统信息?

How can I return system information in Python?(如何在 Python 中返回系统信息?)
本文介绍了如何在 Python 中返回系统信息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

使用 Python,如何以通用方式返回 CPU 使用率、内存使用率(空闲、已用等)、进程计数等信息,以便在 Linux、Windows、BSD 等上运行相同的代码?

Using Python, how can information such as CPU usage, memory usage (free, used, etc), process count, etc be returned in a generic manner so that the same code can be run on Linux, Windows, BSD, etc?

另外,只有当该操作系统确实是操作环境时,如何才能在所有上述系统上返回此信息,并且该操作系统特定于该操作系统的代码正在运行?

Alternatively, how could this information be returned on all the above systems with the code specific to that OS being run only if that OS is indeed the operating environment?

推荐答案

关于跨平台:你最好的选择可能是编写特定于平台的代码,然后有条件地导入它.例如

Regarding cross-platform: your best bet is probably to write platform-specific code, and then import it conditionally. e.g.

import sys
if sys.platform == 'win32':
  import win32_sysinfo as sysinfo
elif sys.platform == 'darwin':
  import mac_sysinfo as sysinfo
elif 'linux' in sys.platform:
  import linux_sysinfo as sysinfo
#etc

print 'Memory available:', sysinfo.memory_available()

对于特定资源,正如 Anthony 指出的,您可以在 linux 下访问 /proc.对于 Windows,您可以在 Microsoft Script存储库.我不知道在哪里可以获得有关 Mac 的此类信息,但我可以想到一个很棒的网站,您可以在其中询问:-)

For specific resources, as Anthony points out you can access /proc under linux. For Windows, you could have a poke around at the Microsoft Script Repository. I'm not sure where to get that kind of information on Macs, but I can think of a great website where you could ask :-)

这篇关于如何在 Python 中返回系统信息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How can I read system information in Python on Windows?(如何在 Windows 上读取 Python 中的系统信息?)
How to get the newest directory in Python(如何在 Python 中获取最新目录)
Python - Get Path of Selected File in Current Windows Explorer(Python - 在当前 Windows 资源管理器中获取所选文件的路径)
Print out the whole directory tree(打印出整个目录树)
Python os.stat and unicode file names(Python os.stat 和 unicode 文件名)
A system independent way using python to get the root directory/drive on which python is installed(使用 python 获取安装 python 的根目录/驱动器的系统独立方式)