所以我连接到我的vps通过python,当我想从服务器获得CPU使用率时,我从我的PC获得CPU使用率
shell = spur.SshShell(hostname="ip", username="root", password="password", missing_host_key=spur.ssh.MissingHostKey.accept)
psutil.cpu_percent(interval=5, percpu=True)
print(psutil.cpu_percent())
有人可以帮忙吗?谢谢!