Metadata-Version: 2.0
Name: py-dmidecode
Version: 0.0.2
Summary: python lib that parse the output of dmidecode 
Home-page: https://github.com/zaibon/py-dmidecode
Author: Christophe de Carvalho
Author-email: UNKNOWN
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/zaibon/py-dmidecode/issues
Project-URL: Source, https://github.com/zaibon/py-dmidecode/
Keywords: system development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

# py-dmidecode

Small tool that parse the ouput of the dmidecode command

## How to use
```python
import dmidecode

# parse the full output
data = dmidecode.parse()

# request only a certain type
data = dmidecode.get_by_type(1)
```

