winreglib

High level, class based Windows registry manipulation


Keywords
winreg
License
BSD-3-Clause
Install
pip install winreglib==1.0.0rc1

Documentation

winreglib

A Pathlib style object oriented interface to the Windows Registry

Examples:

from winreglib import RegPath
p=RegPath(r'HKLM\Software')
for k in p.subkeys():
    print(k.name)
    k.value('test').set('apples')