Answers for "how to check cpu and ram usage on a phonr"

1

How to get current CPU and RAM usage in Python?

#!/usr/bin/env python
import psutil
# gives a single float value
psutil.cpu_percent()
# gives an object with many fields
psutil.virtual_memory()
# you can convert that object to a dictionary 
dict(psutil.virtual_memory()._asdict())
Posted by: Guest on June-15-2020

Code answers related to "how to check cpu and ram usage on a phonr"

Python Answers by Framework

Browse Popular Code Answers by Language