Re: [Tutor] python CLI parser

2007-12-28 Thread Chris Fuller
TUGZip (www.tugzip.com) is another free (as in speech) alternative. It has a distinct interface from 7-zip that some may prefer. Cheers ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] python CLI parser

2007-12-28 Thread Marc Tompkins
On Dec 28, 2007 2:11 AM, Simone <[EMAIL PROTECTED]> wrote: > bob gailer ha scritto: > > >> could you have a short review of my CLI package. > > .bz2??? What does that extension mean? (For us Windows folk). Or could > > you attach a simple zip file? > > .bz2 is an archive compressed with the bzip2

Re: [Tutor] python CLI parser

2007-12-28 Thread Simone
bob gailer ha scritto: >> could you have a short review of my CLI package. > .bz2??? What does that extension mean? (For us Windows folk). Or could > you attach a simple zip file? .bz2 is an archive compressed with the bzip2 compression program. If you're on Windows, consider to use 7zip for m

Re: [Tutor] python CLI parser

2007-12-21 Thread tezlo
"Martin Marcher" <[EMAIL PROTECTED]> wrote: > Hello, > > could you have a short review of my CLI package. Hi, it looks alright, it's really rather tiny. For one I could do with spaces between functions for the sake of readability. And it would make more sense to check the callback for being a cal

Re: [Tutor] python CLI parser

2007-12-21 Thread bob gailer
Martin Marcher wrote: > Hello, > > could you have a short review of my CLI package. > .bz2??? What does that extension mean? (For us Windows folk). Or could you attach a simple zip file? [snip] ___ Tutor maillist - Tutor@python.org http://mail.pyt

[Tutor] python CLI parser

2007-12-21 Thread Martin Marcher
Hello, could you have a short review of my CLI package. What it provides is a simple interface to create a "shell". I'll be using it inside a bot I'm writing to manage it. Features: * pluggable commands * works over streams instead of stdin/stdout/stderr so it should be network aware (right?)