[Module] pyRegistry/1.0
by Jens B.Jorgensen other posts by this author
Dec 11 2000 7:01PM messages near this date
Dr. Dobb's Python-URL! - weekly Python news and links (Dec 12)
|
ANNOUNCE: The Snack Sound Toolkit v2.0.4
pyRegistry/1.0
--------------
object-oriented Python 2.0 interface to the Windows Registry
An extension module to provide object-oriented and easy interface to the
Windows Registry.
import pyRegistry
reg = pyRegistry.open('HKLM\Software\SomeSoft')
reg.setValue('a list', ['one', 'two', 'three']) reg.setValue('an int',
12345)
for i in reg.getValueNames() : print reg.getValue(i)
Supports HKEY_PERFORMANCE_DATA, doesn't depend on other windows
extension modules, does MULTI_SZ, unicode.
Source package available at:
http://www.ultraemail.net/~jbj1/pyRegistry/pyRegistry-1.0.zip
URL: http://www.ultraemail.net/~jbj1/
Download: http://www.ultraemail.net/~jbj1/pyRegistry/pyRegistry-1.0.win32-py2.0.exe
License: GPL
Platform: Win32
Binaries: Win32
Categories: Windows95/NT
Jens B. Jorgensen (jbj1@ultraemail.net)
http://www.ultraemail.net/~jbj1
--
<a href="http://www.ultraemail.net/~jbj1/"> pyRegistry/1.0</a> --
object-oriented Python 2.0 interface to the Windows Registry
--
http://www.python.org/mailman/listinfo/python-announce-list
|