Python中使用psutil查看内存占用的情况(内存)
生活随笔
收集整理的這篇文章主要介紹了
Python中使用psutil查看内存占用的情况(内存)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
安裝包
- pip install psutil
常用方法
import psutil import osinfo = psutil.virtual_memory()print u'內(nèi)存使用:',psutil.Process(os.getpid()).memory_info().rss print u'總內(nèi)存:',info.total print u'內(nèi)存占比:',info.percent print u'cpu個數(shù):',psutil.cpu_count()其他內(nèi)置的方法或?qū)傩赃€有:
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 psutilprint (u'電腦開機時間:{}'.format(time.strftime('%y-%m-%d %H:%M:%S', time.localtime(psutil.boot_time()))))?
新人創(chuàng)作打卡挑戰(zhàn)賽發(fā)博客就能抽獎!定制產(chǎn)品紅包拿不停!總結(jié)
以上是生活随笔為你收集整理的Python中使用psutil查看内存占用的情况(内存)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java继承 implements 与
- 下一篇: Python super() 函数的用法