Python小工具-查看内存和CPU
Posted jiablogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python小工具-查看内存和CPU相关的知识,希望对你有一定的参考价值。
import subprocess from time import sleep package = ‘com.wangpos.by.cashier3‘ memory_name = ‘adb shell dumpsys meminfo | findstr "Pss"‘.format(package) memory = ‘adb shell dumpsys meminfo | findstr "Pss"‘.format(package) log_name = open(‘log.txt‘, ‘w‘) for i in range(100000): subprocess.Popen(memory, stderr=log_name, stdout=subprocess.PIPE,shell=True) sleep(5) cpu = ‘adb shell top -n 1 | findstr "PID"‘ cpu_exec = ‘adb shell top -n 1 | findstr package‘.format(package=package) for i in range(10000): subprocess.Popen(cpu_exec, stderr=log_name,stdout=subprocess.PIPE)
以上是关于Python小工具-查看内存和CPU的主要内容,如果未能解决你的问题,请参考以下文章