Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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())
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #How #current #CPU #RAM #usage
ADD COMMENT
Topic
Name
6+2 =