Skip to main content

Pythonic object-based access to the Windows Registry.

Project description

regobj: Pythonic object-based access to the Windows Registry

This module provides a thin wrapper around the standard _winreg module, allowing easier and more pythonic access to the Windows Registry.

All access to the registry is done through Key objects, which (surprise!) represent a specific registry key. To begin, there are pre-existing Key objects defined for the HKEY_* root keys, using both long and short names:

>>> HKEY_CURRENT_USER
<regobj Key 'HKEY_CURRENT_USER'>
>>> HKLM
<regobj Key 'HKEY_LOCAL_MACHINE'>

Traversing and creating subkeys is then as simple as ordinary python attribute access:

>>> HKCU.Software.Microsoft.Windows
<regobj Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows'>
>>> HKCU.Software.MyTests
Traceback (most recent call last):
    ...
AttributeError: subkey 'MyTests' does not exist
>>> HKCU.Software.MyTests = Key
>>> HKCU.Software.MyTests
<regobj Key 'HKEY_CURRENT_USER\Software\MyTests'>
>>> del HKCU.Software.MyTests

Of course, for keys that don’t happen to be named like python identifiers, there are also methods that can accomplish the same thing. To help reduce visual clutter, calling a key object is a shorthand for attribute lookup:

>>> HKCU.Software.set_subkey("my-funny-key",Key)
>>> HKCU.Software.get_subkey("my-funny-key").SubKey = Key
>>> HKCU("Software\my-funny-key\SubKey")
<regobj Key 'HKEY_CURRENT_USER\Software\my-funny-key\SubKey'>
>>> HKCU.Software.del_subkey("my-funny-key")

The individual values contained in a key can be accessed using standard item access syntax. The returned objects will be instances of the Value class, with ‘name’, ‘type’ and ‘data’ attributes:

>>> HKCU.Software.Microsoft.Clock["iFormat"]
<regobj Value (iFormat,1,REG_SZ)>
>>> HKCU.Software.Microsoft.Clock["iFormat"].name
'iFormat'
>>> HKCU.Software.Microsoft.Clock["iFormat"].data
u'1'
>>> HKCU.Software.Microsoft.Clock["iFormat"].type
1
>>> HKCU.Software.Microsoft.Clock["notavalue"]
Traceback (most recent call last):
    ...
KeyError: "no such value: 'notavalue'"

Iterating over a key generates all the contained values, followed by all the contained subkeys. There are also methods to seperately iterate over just the values, and just the subkeys:

>>> winK = HKCU.Software.Microsoft.Windows
>>> winK["testvalue"] = 42
>>> for obj in winK:
...   print obj
<regobj Value (testvalue,42,REG_DWORD)>
<regobj Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion'>
<regobj Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell'>
<regobj Key 'HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam'>
>>> [k.name for k in winK.subkeys()]
['CurrentVersion', 'Shell', 'ShellNoRoam']
>>> [v.data for v in winK.values()]
[42]
>>> del winK["testvalue"]

These iterators also provide efficient implementations of the __contains__ and __len__ methods, so they can be used as follows:

>>> "Shell" in HKCU.Software.Microsoft.Windows
True
>>> "Shell" in HKCU.Software.Microsoft.Windows.subkeys()
True
>>> "Shell" in HKCU.Software.Microsoft.Windows.values()
False
>>> len(HKCU.Software.Microsoft.Windows)
3
>>> len(HKCU.Software.Microsoft.Windows.values())
0

Finally, there is powerful support for specifying key and value structures at creation time. The simplest case has already been demonstrated, where setting a subkey to the Key class or to None will create it without any data:

>>> HKCU.Software.MyTests = None
>>> len(HKCU.Software.MyTests)
0

If a subkey is assigned an existing key object, the data from that key is copied into the subkey:

>>> HKCU.Software.MyTests = HKCU.Software.Microsoft.Windows
>>> len(HKCU.Software.MyTests)
3
>>> [k.name for k in HKCU.Software.MyTests]
['CurrentVersion', 'Shell', 'ShellNoRoam']
>>> del HKCU.Software.MyTests

If a subkey is assigned a dictionary, the structure of that dictionary is copied into the subkey. Scalar values become key values, while nested dictionaries create subkeys:

>>> HKCU.Software.MyTests = {"val1":7, "stuff":{"a":1,"c":2,"e":3}}
>>> len(HKCU.Software.MyTests)
2
>>> [v.name for v in HKCU.Software.MyTests.values()]
['val1']
>>> [k.name for k in HKCU.Software.MyTests.subkeys()]
['stuff']
>>> len(HKCU.Software.MyTests.stuff)
3
>>> del HKCU.Software.MyTests

Any other value assigned to a subkey will become the default value for that key (i.e. the value with name “”):

>>> HKCU.Software.MyTests = "dead parrot"
>>> HKCU.Software.MyTests[""].data
u'dead parrot'
>>> del HKCU.Software.MyTests

And that’s that - enjoy!

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

regobj-0.1.0.zip (7.9 kB view details)

Uploaded Source

Built Distribution

regobj-0.1.0.win32.exe (74.1 kB view details)

Uploaded Source

File details

Details for the file regobj-0.1.0.zip.

File metadata

  • Download URL: regobj-0.1.0.zip
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for regobj-0.1.0.zip
Algorithm Hash digest
SHA256 6f623bf4a2176a522ed0c50a13966c47805be4f542c131db823b53230a7fc537
MD5 7353ade132d0853718353b6c44a85cb8
BLAKE2b-256 6f6a2c20768203f0d5c058777e4c141613d0d5b87044c905d710ef81f23af2c7

See more details on using hashes here.

File details

Details for the file regobj-0.1.0.win32.exe.

File metadata

  • Download URL: regobj-0.1.0.win32.exe
  • Upload date:
  • Size: 74.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for regobj-0.1.0.win32.exe
Algorithm Hash digest
SHA256 d0304ea473a7e429b1093090efde5e9015b71ceac7c1cd4d644f3d64b5645de4
MD5 b88caf8e005bffc1047c68dd892bc1d1
BLAKE2b-256 7665edca8068b3626d52ac62387af99c7996343667b7108a6269032a5d5a8602

See more details on using hashes here.

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