python cpu code example
Example 1: python get cpu info
import cpuinfo
print('CPU =', cpuinfo.get_cpu_info()['brand_raw'])
Example 2: 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())
Example 3: python cpu usage
# Importing the library
import psutil
# Calling psutil.cpu_precent() for 4 seconds
print('The CPU usage is: ', psutil.cpu_percent(4))