Re: python for *nix system admins

2008-10-08 Thread Erik Southworth
On Sat, Sep 27, 2008 at 4:05 AM, Lars Stavholm <[EMAIL PROTECTED]> wrote: > Hi All, > > I'm new to this list and hoping that this is not off-topic. > If it is, please point me in the right direction. > > I seem to recollect a python module or library for *nix sysadmins, > but I can't for the life o

Re: python for *nix system admins

2008-09-28 Thread Lars Stavholm
Thank you all for your input. /Lars Lars Stavholm wrote: > Hi All, > > I'm new to this list and hoping that this is not off-topic. > If it is, please point me in the right direction. > > I seem to recollect a python module or library for *nix sysadmins, > but I can't for the life of me find it a

Re: python for *nix system admins

2008-09-27 Thread Sebastian Bassi
On Sat, Sep 27, 2008 at 3:32 PM, Eric Wertman <[EMAIL PROTECTED]> wrote: > I've been growing a library of my own functions, that use the names of > unix commands. They are just conveniences, of course, but I'd suggest > the same for sysadmins, it's handy. Can you share it? Best, SB. -- http://ma

Re: python for *nix system admins

2008-09-27 Thread Eric Wertman
I've been growing a library of my own functions, that use the names of unix commands. They are just conveniences, of course, but I'd suggest the same for sysadmins, it's handy. -- http://mail.python.org/mailman/listinfo/python-list

Re: python for *nix system admins

2008-09-27 Thread Michael Mabin
import commands ? On Sat, Sep 27, 2008 at 8:06 AM, George Boutsioukis <[EMAIL PROTECTED]>wrote: > On Sat, 27 Sep 2008 10:05:01 +0200, Lars Stavholm wrote: > > > Hi All, > > > > I'm new to this list and hoping that this is not off-topic. If it is, > > please point me in the right direction. > > >

Re: python for *nix system admins

2008-09-27 Thread George Boutsioukis
On Sat, 27 Sep 2008 10:05:01 +0200, Lars Stavholm wrote: > Hi All, > > I'm new to this list and hoping that this is not off-topic. If it is, > please point me in the right direction. > > I seem to recollect a python module or library for *nix sysadmins, but I > can't for the life of me find it a

Re: python for *nix system admins

2008-09-27 Thread Ben Finney
Lars Stavholm <[EMAIL PROTECTED]> writes: > The module (or library) somehow added unix command capabilities > to the python language. It seemed like a lesser known, perhaps new, > python library or module. Which particular Unix commands? Perhaps you're thinking of the 'shutil' module http://www.

Re: python for *nix system admins

2008-09-27 Thread Lars Stavholm
km wrote: > import os Thanks, but I'm aware of the standard libraries like os, sys, commands, and whatnot. I'm looking for a non-standard library that acts like a wrapper for the unix commands. I have seen it, I just can't find it again. /L > On Sat, Sep 27, 2008 at 1:35 PM, Lars Stavholm <[EMAIL

Re: python for *nix system admins

2008-09-27 Thread km
import os HTH KM ~~ On Sat, Sep 27, 2008 at 1:35 PM, Lars Stavholm <[EMAIL PROTECTED]> wrote: > Hi All, > > I'm new to this list and hoping that this is not off-topic. > If it is, please point me in the right direction. > > I seem to recollect a python module or library for *nix sysa

python for *nix system admins

2008-09-27 Thread Lars Stavholm
Hi All, I'm new to this list and hoping that this is not off-topic. If it is, please point me in the right direction. I seem to recollect a python module or library for *nix sysadmins, but I can't for the life of me find it again. The module (or library) somehow added unix command capabilities t