python中使用psutil查看内存占用的情况
2018-09-22 00:52
有的时候需要对python程序内存占用进行监控,这个时候可以用到psutil库,Anaconda中是自带的,如果import出错,可以用pip install psutil(安装在python中)或conda install psutil(安装在Anaconda中)
#常用的: import psutil import os info = psutil.virtual_memory() print u内存使用:ory_info().rss print u总内存:,info.total print u内存占比:,info.percent print ucpu个数:,psutil.cpu_count()
其他内置的方法或属性还有:
boot_time callable collections cpu_count cpu_percent cpu_stats cpu_times cpu_times_percent disk_io_counters disk_partitions disk_usage errno functools long net_connections net_if_addrs net_if_stats net_io_counters os pid_exists pids process_iter pwd signal subprocess swap_memory sys test time traceback users version_info virtual_memory wait_procs win_service_get win_service_iter
查看windows开机时间
import time import psutil print (u电脑开机时间:{}.format(time.strftime(%y-%m-%d %H:%M:%S, time.localtime(psutil.boot_time()))))
以上这篇python中使用psutil查看内存占用的情况就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
文章标题:python中使用psutil查看内存占用的情况
文章链接:http://soscw.com/index.php/essay/16879.html