Parse dmidecode into reasonable python
Project description
# dmiparse
parse dmidecode with python
=======
[](https://travis-ci.org//xmonader/dmiparse)
[](https://codecov.io/gh//xmonader/dmiparse)
# dmiparse
Convert dmidecode output into clean queryable structure
## Installation
pip3 install dmiparse
## Example
```ipython
In [7]: print(sample1)
# dmidecode 3.1
Getting SMBIOS data from sysfs.
SMBIOS 2.6 present.
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: LENOVO
Product Name: 20042
Version: Lenovo G560
Serial Number: 2677240001087
UUID: CB3E6A50-A77B-E011-88E9-B870F4165734
Wake-up Type: Power Switch
SKU Number: Calpella_CRB
Family: Intel_Mobile
In [8]: from dmiparse import parse_dmi
In [9]: parse_dmi(sample1)
Out[9]: {'System Information': <dmiparse.Section at 0x7f88b0a5add8>}
In [10]: from json import dumps
In [11]: print(dumps(parse_dmi(sample1), default=lambda o: o.__dict__, indent=4))
{
"System Information": {
"props": {
"Manufacturer": {
"val": "LENOVO",
"items": []
},
"Product Name": {
"val": "20042",
"items": []
},
"Version": {
"val": "Lenovo G560",
"items": []
},
"Serial Number": {
"val": "2677240001087",
"items": []
},
"UUID": {
"val": "CB3E6A50-A77B-E011-88E9-B870F4165734",
"items": []
},
"Wake-up Type": {
"val": "Power Switch",
"items": []
},
"SKU Number": {
"val": "Calpella_CRB",
"items": []
},
"Family": {
"val": "Intel_Mobile",
"items": []
}
},
"title": "System Information",
"handleline": "Handle 0x0001, DMI type 1, 27 bytes"
}
}
```
## running tests
`tox` or `pytest`
parse dmidecode with python
=======
[](https://travis-ci.org//xmonader/dmiparse)
[](https://codecov.io/gh//xmonader/dmiparse)
# dmiparse
Convert dmidecode output into clean queryable structure
## Installation
pip3 install dmiparse
## Example
```ipython
In [7]: print(sample1)
# dmidecode 3.1
Getting SMBIOS data from sysfs.
SMBIOS 2.6 present.
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: LENOVO
Product Name: 20042
Version: Lenovo G560
Serial Number: 2677240001087
UUID: CB3E6A50-A77B-E011-88E9-B870F4165734
Wake-up Type: Power Switch
SKU Number: Calpella_CRB
Family: Intel_Mobile
In [8]: from dmiparse import parse_dmi
In [9]: parse_dmi(sample1)
Out[9]: {'System Information': <dmiparse.Section at 0x7f88b0a5add8>}
In [10]: from json import dumps
In [11]: print(dumps(parse_dmi(sample1), default=lambda o: o.__dict__, indent=4))
{
"System Information": {
"props": {
"Manufacturer": {
"val": "LENOVO",
"items": []
},
"Product Name": {
"val": "20042",
"items": []
},
"Version": {
"val": "Lenovo G560",
"items": []
},
"Serial Number": {
"val": "2677240001087",
"items": []
},
"UUID": {
"val": "CB3E6A50-A77B-E011-88E9-B870F4165734",
"items": []
},
"Wake-up Type": {
"val": "Power Switch",
"items": []
},
"SKU Number": {
"val": "Calpella_CRB",
"items": []
},
"Family": {
"val": "Intel_Mobile",
"items": []
}
},
"title": "System Information",
"handleline": "Handle 0x0001, DMI type 1, 27 bytes"
}
}
```
## running tests
`tox` or `pytest`
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
dmiparse-0.2.0.tar.gz
(5.0 kB
view details)
File details
Details for the file dmiparse-0.2.0.tar.gz.
File metadata
- Download URL: dmiparse-0.2.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30a270a2a6540bcc75f265d26267d5cb5249f1269ba9875936fca5c692869098
|
|
| MD5 |
398250f1e9e9c2948e34ecbb1ced146e
|
|
| BLAKE2b-256 |
84fe91ea1491dd2d12b4043b4abba0c08ca146f8b67467ef294773531dc8f9d1
|