python如何实现获取linux系统信息-创新互联

python如何实现获取linux系统信息?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

创新互联建站主要从事网站建设、网站制作、网页设计、企业做网站、公司建网站等业务。立足成都服务赞皇,10年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18980820575

方法一:psutil模块

#!usr/bin/env python
# -*- coding: utf-8 -*-

import socket
import psutil
class NodeResource(object):
  def get_host_info(self):
    host_name = socket.gethostname()
    return {'host_name':host_name}

  def get_cpu_state(self):
    cpu_count = psutil.cpu_count(logical=False)
    cpu_percent =(str)(psutil.cpu_percent(1))+'%'
    return {'cpu_count':cpu_count,'cpu_percent':cpu_percent}

  def get_memory_state(self):
    mem = psutil.virtual_memory()
    mem_total = mem.total / 1024 / 1024
    mem_free = mem.available /1024/1024
    mem_percent = '%s%%'%mem.percent
    return {'mem_toal':mem_total,'mem_free':mem_free,'mem_percent':mem_percent}

  def get_disk_state(self):
    disk_stat = psutil.disk_usage('/')
    disk_total = disk_stat.total
    disk_free = disk_stat.free
    disk_percent = '%s%%'%disk_stat.percent
    return {'mem_toal': disk_total, 'mem_free': disk_free, 'mem_percent': disk_percent}

文章标题:python如何实现获取linux系统信息-创新互联
当前链接:https://www.cdcxhl.com/article42/codjhc.html

成都网站建设公司_创新互联,为您提供微信小程序网站改版搜索引擎优化网站建设品牌网站设计网站设计

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

成都seo排名网站优化