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.
Comment