python之psutil模块使用笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之psutil模块使用笔记相关的知识,希望对你有一定的参考价值。
psutil是一个跨平台库( 系统利用率(包括CPU、内存、磁盘、网络等)信息。它主要应用于系统监控,分析和限制系统资源及 进程的管理。它实现了同等命令行工具提供的功能,如ps、top、lsof、netstat、ifconfig、who、df、 kill、free、nice、ionice、iostat、iotop、uptime、pidof、tty、taskset、pmap等。目前支持32位 和64位的Linux、Windows、OS X、FreeBSD和Sun Solaris等 操作系统, Linux wget https://pypi.python.org/packages/source/p/psutil/psutil-2.0.0.tar.gz Windows psutil-5.2.2.win-amd64-py2.7.exe #!/usr/bin/env python #coding:utf-8 import time import sys import psutil cpu_user = psutil.cpu_times().user cpu_number=psutil.cpu_count() mem = psutil.virtual_memory() cpu_physics = psutil.cpu_count(logical=False) system_pid = psutil.pids() disk_type = psutil.disk_partitions() network_type = psutil.net_io_counters() print cpu_user print cpu_number print mem print cpu_physics print disk_type print system_pid print network_type
本文出自 “一杯水” 博客,请务必保留此出处http://6528161.blog.51cto.com/6518161/1928879
以上是关于python之psutil模块使用笔记的主要内容,如果未能解决你的问题,请参考以下文章