Easy Windows-Registry display & manipulation in Python.
from rage import RegistryKey
# Open some key
key = RegistryKey(some_registry_path)
# Print names of all subkeys
for key_name in key.enum_keys():
print key
# Get a subkey
subkey = key["subkey-name"]
# Print out all the subkey's values
for name, value in subkey.values:
print repr(name), value
# Set one of the values
editable_subkey = subkey.get_editable()
editable_subkey.values["my value name"] = RegSZ("Value value!")
# Delete a value
del editable_subkey.values["value to delete"]
# Delete a subkey
editable_subkey.delete_subkey("subkey name", recurse=False)
Release files for rage 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rage-0.1.0.zip | 6.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| rage-0.1.0-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 12.3 kB
Release files / rage-0.1.0.zip
| Download URL | rage-0.1.0.zip |
|---|---|
| Size | 6.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7b89cae2639609b4786e09377d12b3385b7eda8e55681fc181693d58bc732d32
|
|
BLAKE2b-256 checksum How to use checksums |
92ac5fb44e65f3c587105c043eb4a12ca582248ecadc842d0327d8c501909a44
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / rage-0.1.0-py2.py3-none-any.whl
| Download URL | rage-0.1.0-py2.py3-none-any.whl |
|---|---|
| Size | 5.4 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
1d206b655abb8feae315bf82aca5dadfb937ed40408a58a3bdacf49d3570c4d7
|
|
BLAKE2b-256 checksum How to use checksums |
3a003c4b21e2a55fcdee14542383febb216ad50af9d53ba7aace29b5c64b0a13
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |