>I am currently working on a project that in a small part of it I need
to find keys in the >windows registry. I have found _winreg but was
wondering if anyone knows of any modules >that people have written as a
wrapper for it. I have googled like crazy but am not finding >anything.
What I trying to do is search the registry for a list of known keys
without knowing >their specific locations and then find values of the
other keys around it. Hope that makes &gt;sence.<br><br>I also am working on a scripts that serches the registry for key terms.&nbsp; I have found that this works a a substitute.<br><br>import codecs<br><br>os.popen(&quot;reg export hklm 
regFile.txt&quot;)<br>regfile = codecs.open(regFile.txt, encoding='utf_16')<br><br>#Then you can do text searches in the file somthing like<br><br>for item in regfile:<br>&nbsp;&nbsp;&nbsp; if '[' in item<br>&nbsp;&nbsp;&nbsp; print item<br><br>