Metadata-Version: 2.1
Name: regparse
Version: 1.0.1
Summary: Read exported windows registry text files
Home-page: https://github.com/Diverto/regparse
Author: Vlatko Kosturjak
Author-email: kost@diverto.hr
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown


## regparse

Read and parse exported windows registry text files

## Install

Install using pip:

```
pip install regparse
```

## Usage

Typical usage:
```
import regparse
r=regparse.RegParse()
c=r.readfile('Computer_HKLM.reg')
r.getkey('HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\System','EnableLUA','n/a-dword:00000001')
```

Raw function to get the key:
```
r.getconfig('HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\System','"EnableLUA"','n/a-dword:00000001')
```

Automatically parse value from the registry (note: default should be also parseable):
```
current = reg.getval('HKEY_LOCAL_MACHINE\\SYSTEM\\Select','Current','dword:00000001')
```



