Re: Beginner Ping program

2007-04-30 Thread Duncan Booth
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > There is no (that I am aware of) ICMP module in the standard library. > See http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/409689 for > an example of a Python implementation of ping. Google also finds another implementation at: http://ww

Re: Beginner Ping program

2007-04-29 Thread Gabriel Genellina
En Sun, 29 Apr 2007 08:26:36 -0300, Bjoern Schliessmann <[EMAIL PROTECTED]> escribió: > Linus Cohen wrote: >> It will be called inettools, and the ping function is >> what I'm working on first. It should be a simple enough job to >> code in the features the Unix and DOS ping programs have(never

Re: Beginner Ping program

2007-04-29 Thread Bjoern Schliessmann
Linus Cohen wrote: > Actually the class ping bit is a placeholder. But why is it one? "ping" is something you do -- and not a "thing" of which you could have several copies. > I'm actually developing a module with python implementations of > most standard network/internet tools such as telnet,

Re: Beginner Ping program

2007-04-28 Thread [EMAIL PROTECTED]
On Apr 27, 10:54 pm, Linus Cohen <[EMAIL PROTECTED]> wrote: > Hi all, > I'm a newbie to python and programming in general, so I wanted a > simple project to start off. What I'm trying to do here is write a > python command-line ping program, much like the Unix and Windows ping > programs. I've got

Re: Beginner Ping program

2007-04-28 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, Linus Cohen wrote: > Actually the class ping bit is a placeholder. I'm actually developing > a module with python implementations of most standard network/internet > tools such as telnet, tracert, whois etc. It will be called inettools, > and the ping function is what I'm w

Re: Beginner Ping program

2007-04-28 Thread Linus Cohen
Actually the class ping bit is a placeholder. I'm actually developing a module with python implementations of most standard network/internet tools such as telnet, tracert, whois etc. It will be called inettools, and the ping function is what I'm working on first. It should be a simple enough job to

Re: Beginner Ping program

2007-04-27 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, Linus Cohen wrote: > I'm a newbie to python and programming in general, so I wanted a > simple project to start off. What I'm trying to do here is write a > python command-line ping program, much like the Unix and Windows ping > programs. I've got this much worked out alrea