python-psutil
yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel gcc python-devel
yum -y install epel-release
git clone https://github.com/giampaolo/psutil.git
cd psutil
pip install psutil
import psutil datetime
#cpu實(shí)例化
cpu = psutil.cpu_times()
#內(nèi)存實(shí)例化
mem = psutil.virtual_memory()
#虛擬內(nèi)存
swap = psutil.swap_memory()
#磁盤
disk = psutil.disk_partitions()
#網(wǎng)絡(luò)
net = psutil.net_io_conunters()
net1 = psutil.net_if_addrs()
實(shí)例獲取回環(huán)IP
net1['lo'][0].address
'127.0.0.1'
獲取本機(jī)的IP,我的本機(jī)是虛擬機(jī)的
net1['ens3'][0].address
'192.168.1.83'
#系統(tǒng)登錄用戶信息
uses = psutil.users()
#系統(tǒng)當(dāng)前時(shí)間
date = datetime.datetime.fromtimestamp(psutil.boot_time()).strftime("%Y-%m-%d %H:%M:%S")
轉(zhuǎn)載于:https://blog.51cto.com/2687949/2107739
總結(jié)
以上是生活随笔為你收集整理的python-psutil的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JAVA-微信支付开发
- 下一篇: 通过实例理解 RabbitMQ 的基本概