Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/moehmeni/pcspec

A pythonic tool for getting PC main specifications
https://github.com/moehmeni/pcspec

amd computer-architecture cpu game gpu intel nvidia

Last synced: about 3 hours ago
JSON representation

A pythonic tool for getting PC main specifications

Awesome Lists containing this project

README

        

# pcspec
A pythonic tool for getting PC main specifications like `CPU` and `GPU` model , `RAM` and disk free space.

## Installation
`python -m pip install -r requirements.txt`

## Usage
```python
from pcspec import PC

pc = PC()

print(pc.json_info)
```
Output :
```json
{
"CPU": "AMD A9-9420 RADEON R5",
"Free disk space": "18 GB",
"GPU": "AMD Radeon(TM) R5 Graphics",
"Platform": "Windows",
"RAM": "7.5 GB"
}
```