How can I read system information in Python on OS X?(如何在 OS X 上读取 Python 中的系统信息?)
问题描述
根据这个与操作系统无关的问题,具体来说此回复,类似于可从点赞处获得的数据在 Linux 上的/proc/meminfo 中,如何使用 Python 从 OS X 读取系统信息(包括但不限于内存使用情况).
Following from this OS-agnostic question, specifically this response, similar to data available from the likes of /proc/meminfo on Linux, how can I read system information from OS X using Python (including, but not limited to memory usage).
推荐答案
唯一可以从平台模块中获得非常好的东西,但它非常有限(cpu、操作系统版本、架构等).对于 cpu 使用率和正常运行时间,我认为您必须将命令行实用程序uptime"和vm_stat"包装起来.
The only stuff that's really nicely accesible is available from the platform module, but it's extremely limited (cpu, os version, architecture, etc). For cpu usage and uptime I think you will have to wrap the command line utilities 'uptime' and 'vm_stat'.
我为 vm_stat 构建了一个,另一个由你决定;-)
I built you one for vm_stat, the other one is up to you ;-)
import os, sys
def memoryUsage():
result = dict()
for l in [l.split(':') for l in os.popen('vm_stat').readlines()[1:8]]:
result[l[0].strip(' "').replace(' ', '_').lower()] = int(l[1].strip('.
'))
return result
print memoryUsage()
这篇关于如何在 OS X 上读取 Python 中的系统信息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 OS X 上读取 Python 中的系统信息?


基础教程推荐
- 如何在Python中绘制多元函数? 2022-01-01
- 如何在 Python 中检测文件是否为二进制(非文本)文 2022-01-01
- 将 YAML 文件转换为 python dict 2022-01-01
- 使用 Google App Engine (Python) 将文件上传到 Google Cloud Storage 2022-01-01
- Python 的 List 是如何实现的? 2022-01-01
- 使 Python 脚本在 Windows 上运行而不指定“.py";延期 2022-01-01
- 症状类型错误:无法确定关系的真值 2022-01-01
- 使用Python匹配Stata加权xtil命令的确定方法? 2022-01-01
- 哪些 Python 包提供独立的事件系统? 2022-01-01
- 合并具有多索引的两个数据帧 2022-01-01