Python - Core Speed [duplicate]
问题 This question already has answers here : Getting processor information in Python (10 answers) Closed 5 years ago . I'm trying to find out where this value is stored in both windows and osx , in order to do some calculations to make a better task distribution. Core speed in Hz Thanks in advance. Using the platform.process() command only returns the name not the speed I only managed to get it trough this: import subprocess info=subprocess.check_output(["wmic","cpu","get", "name"]) print info