是否有任何着名的python插件/库来监控linux系统,例如:
有没有?
非常感谢你:D
答案 0 :(得分:2)
我在Python中创建了这个简单的应用程序,为此运行所需的只是一个名为“acpi”的包。将刷新率更改为您的首选项。
import os
import time
refreshrate = 10
while(1):
os.system("clear")
print(os.system("acpi -V"))
time.sleep(refreshrate)
答案 1 :(得分:0)