modules devoted to manipulationg .reg files

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • black_13

    modules devoted to manipulationg .reg files

    are there any python modules for manipulation of .reg files producted
    by
    the win32 prog "reg".
    thanks.
    black_13
  • Mike Driscoll

    #2
    Re: modules devoted to manipulationg .reg files

    On Mar 19, 1:14 pm, black_13 <jjosb...@gmail .comwrote:
    are there any python modules for manipulation of .reg files producted
    by
    the win32 prog "reg".
    thanks.
    black_13
    The *.reg files are text files, so you can parse them like any text
    file. You can just edit the Windows Registry directly using the built-
    in module: _winreg. There's also a more abstract wrapper called YARW.

    Mike

    Comment

    Working...