Popular recipes by Daniel Stutzbach http://code.activestate.com/recipes/users/4174048/2010-09-01T12:20:06-07:00ActiveState Code Recipescollections.MutableMapping wrapper around _winreg (Python)
2010-09-01T12:20:06-07:00Daniel Stutzbachhttp://code.activestate.com/recipes/users/4174048/http://code.activestate.com/recipes/577381-collectionsmutablemapping-wrapper-around-_winreg/
<p style="color: grey">
Python
recipe 577381
by <a href="/recipes/users/4174048/">Daniel Stutzbach</a>
(<a href="/recipes/tags/registry/">registry</a>, <a href="/recipes/tags/winreg/">winreg</a>, <a href="/recipes/tags/_winreg/">_winreg</a>).
</p>
<p>The _winreg module is a thin wrapper around the Windows C API to the Windows Registry. As a thin wrapper, it's not very Pythonic. This recipe defines a class using the MutableMapping ABC to create a dictionary-like interface to the Windows Registry.</p>