Get info about your CPU
Project description
cpumodel
A Python library to parse and return various attributes from the CPU string
It has only been tested on relatively modern AMD and Intel CPUs that are likely to still be in use, i.e. AMD Ryzen, AMD EPYC, Intel i-series, Intel Xeon E3/E5 and newer. Other CPUs may or may not produce useful output.
If you want to request support for an unsupported CPU or if you see a bug in the output, see the Contributing section.
Installation
pip install cpumodel
Usage
As a library
from cpumodel.cpumodel import get_cpu_model
info = get_cpu_model()
As a script
$ cpumodel
{'cpuVendor': 'AMD', 'cpuString': 'AMD Ryzen 7 5700G', 'cpuModel': 'Ryzen 7 5700G', 'cpuFamily': 'Ryzen 7', 'cpuGeneration': '5', 'cpuLetter': 'G'}
You can optionally supply a CPU string with -t
or --test
which will cause cpumodel to parse this CPU
string rather than get the local system's CPU string. This is useful for testing the logic.
$ cpumodel -t "Intel(R) Xeon(R) Gold 6234 CPU @ 3.30GHz"
{'cpuVendor': 'Intel', 'cpuString': 'Intel Xeon Gold 6234', 'cpuModel': 'Xeon Gold 6234', 'cpuFamily': 'Xeon Gold', 'cpuGeneration': '6'}
Output
This library returns up to 6 values (it is possible for values to be None
)
cpuVendor
, the CPU vendor, e.g.Intel
cpuString
, the full model string of the CPU, e.g.Intel Core i7-6700S
cpuModel
, the shorter model name of the CPU, e.g.Core i7-6700S
cpuFamily
, the concise family name of the CPU, e.g.Core i7
cpuGeneration
, the numeric generation of the CPU, e.g.6
cpuLetter
, any trailing letter codes for this CPU, e.g.S
Examples
The best explanation of the data returned is probably by giving various examples.
cpuVendor |
cpuString |
cpuModel |
cpuFamily |
cpuGeneration |
cpuLetter |
---|---|---|---|---|---|
Intel |
Intel Xeon Platinum 8358 |
Xeon Platinum 8358 |
Xeon Platinum |
8 |
|
Intel |
Intel Xeon Gold 6226R |
Xeon Gold 6226R |
Xeon Gold |
6 |
R |
Intel |
Intel Xeon E3-1220 v6 |
Xeon E3-1220 v6 |
Xeon E3 |
6 |
|
Intel |
Intel Celeron G1610 |
Celeron G1610 |
Celeron |
1 |
G |
Intel |
Intel Core i5-6500T |
Core i5-6500T |
Core i5 |
6 |
T |
Intel |
Intel Core i9-9900K |
Core i9-9900K |
Core i9 |
9 |
K |
Intel |
Intel Core i9-10900 |
Core i9-10900 |
Core i9 |
10 |
|
Intel |
12th Gen Intel Core i7-1265U |
Core i7-1265U |
Core i7 |
12 |
U |
Intel |
12th Gen Intel Core i9-12900 |
Core i9-12900 |
Core i9 |
12 |
|
AMD |
AMD Ryzen 7 5700G |
Ryzen 7 5700G |
Ryzen 7 |
5 |
G |
AMD |
AMD Ryzen 7 PRO 5850U |
Ryzen 7 PRO 5850U |
Ryzen 7 PRO |
5 |
U |
AMD |
AMD Ryzen 9 7950X |
Ryzen 9 7950X |
Ryzen 9 |
7 |
X |
AMD |
AMD Ryzen Threadripper 3990X |
Ryzen Threadripper 3990X |
Ryzen Threadripper |
3 |
X |
AMD |
AMD Athlon 5350 APU |
Athlon 5350 APU |
Athlon |
5 |
|
AMD |
AMD Opteron 6366 HE |
Opteron 6366 H |
Opteron |
6366 |
H |
AMD |
AMD EPYC 7551P |
EPYC 7551P |
EPYC |
7 |
P |
Contribution
If this library doesn't work properly on your CPU, it's probably because I've never tested on a CPU of that type.
Please open an issue, and describe what you would expect the output of this module to be, and include the output of this command:
grep 'model name' /proc/cpuinfo | sort -u
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cpumodel-0.0.3.tar.gz
.
File metadata
- Download URL: cpumodel-0.0.3.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Linux/5.15.0-1039-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f37de1449b6fefa855d4316c15e4dc060a7ae63ff920122050e1d73f687f805 |
|
MD5 | 06b6f8820aa345bb79fd36e6a2943c41 |
|
BLAKE2b-256 | ae834593da762909fae7f2d76810f577d73a2ecfd4a4558c6761f3427f114907 |
File details
Details for the file cpumodel-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: cpumodel-0.0.3-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Linux/5.15.0-1039-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 663336871ba18f00db5eee16140fd9fb525736e243e0aa425f2c247b5e4c7710 |
|
MD5 | b473b2e6151d455bae245731abcdb431 |
|
BLAKE2b-256 | f5e39ff2d1ea3064ccb735b8b152e2bd955cca92572c37efd3a0756c8d2ee45e |