Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 275 Bytes

README.rst

File metadata and controls

13 lines (10 loc) · 275 Bytes

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')