Latest recipes tagged "_winreg"http://code.activestate.com/recipes/tags/_winreg/new/2012-05-23T15:33:13-07:00ActiveState Code RecipesA small python script to detect .net framwork versions installed on your local windows machine (Python) 2012-05-23T15:33:13-07:00Yong Zhaohttp://code.activestate.com/recipes/users/4182173/http://code.activestate.com/recipes/578143-a-small-python-script-to-detect-net-framwork-versi/ <p style="color: grey"> Python recipe 578143 by <a href="/recipes/users/4182173/">Yong Zhao</a> (<a href="/recipes/tags/dotnet/">dotnet</a>, <a href="/recipes/tags/framework/">framework</a>, <a href="/recipes/tags/python_scripts/">python_scripts</a>, <a href="/recipes/tags/windows_registry/">windows_registry</a>, <a href="/recipes/tags/_winreg/">_winreg</a>). </p> <p>This small script uses the _winreg module to find out the .net framwork versions installed on your local machine. tested using IronPython 2.7.1.</p> collections.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>