Skip to main content

Yet Another Registry Wrapper

Project description

YARW: Yet Another Registry Wrapper

This recipe provides “Registry”, a Windows registry wrapper class that makes it easy to work with the Windows registry. The class works with an inner class named “RegistryKey”, which wraps up a Windows registry key and provides methods to access and manipulate the key information. The class provides easy to remember substitutes for long method names of _winreg.

Example

key = Registry.open('HKEY_LOCAL_MACHINE', "SOFTWARE\\Python")
# Prints the RegistryKey instance
print key
# Prints the key name and the wrapped up PyHKEY instance
print key.getkeyname(), key.getkey()
corekey = key.openkey(1)

idx = 0
# Print the install path for Python 2.4 if installed.
while True:
    try:
        keyname = corekey.enumkey(idx)
        idx += 1
        if keyname == '2.4':
            keyVersion = corekey.openkey(idx)
            print keyVersion, keyVersion.getkeyname()
            keyPath = keyVersion.openkey(2)
            print keyPath, keyPath.getkeyname()
            print 'Install path is %s' % keyPath.getvalue()
            keyPath.close()
            keyVersion.close()
            break
    except RegistryError:
        break

corekey.close()
key.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

YARW-0.1.5.tar.gz (32.5 kB view hashes)

Uploaded Source

Built Distribution

YARW-0.1.5-py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page