Wanted: something more Pythonic than _winreg.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jonathan Fine

    Wanted: something more Pythonic than _winreg.

    Hello

    I'm using the _winreg module to change Windows registry settings, but
    its rather low level, and I'd prefer to be working with something more
    Pythonic.

    Does anyone have any recommendations ?


    Jonathan
  • Christian Heimes

    #2
    Re: Wanted: something more Pythonic than _winreg.

    Jonathan Fine wrote:
    Hello
    >
    I'm using the _winreg module to change Windows registry settings, but
    its rather low level, and I'd prefer to be working with something more
    Pythonic.
    >
    Does anyone have any recommendations ?
    Yeah, please implement a nice wrapper and submit a patch to
    bugs.python.org . We are looking for a decent wrapper for the windows
    registry for some time.

    Thanks :)

    Christian

    Comment

    • Mike Driscoll

      #3
      Re: Wanted: something more Pythonic than _winreg.

      On Oct 10, 9:44 am, Jonathan Fine <J.F...@open.ac .ukwrote:
      Hello
      >
      I'm using the _winreg module to change Windows registry settings, but
      its rather low level, and I'd prefer to be working with something more
      Pythonic.
      >
      Does anyone have any recommendations ?
      >
      Jonathan
      I've used YARW before for nested deletion. It's a little nicer:



      There's also this recipe: http://code.activestate.com/recipes/174627/

      Other than those, I'm not really aware of much.

      Mike

      Comment

      Working...