Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/moehmeni/pcspec
- Owner: moehmeni
- License: mit
- Created: 2021-08-20T12:53:23.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-05T11:49:56.000Z (almost 3 years ago)
- Last Synced: 2024-02-08T17:05:32.653Z (9 months ago)
- Topics: amd, computer-architecture, cpu, game, gpu, intel, nvidia
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 PCpc = 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"
}
```