Re: [BangPypers] Any compiled all PEP's into pdf

2010-05-28 Thread Anand Balachandran Pillai
On Fri, May 28, 2010 at 10:41 AM, Noufal Ibrahim wrote: > On Thu, May 27, 2010 at 5:32 PM, Anand Balachandran Pillai > wrote: > [..] > > > > This felt like a fun thing to do so I actually did it but not from > > the PEPS index since it didn't give me text files but HTML files. > > Thankfully the

Re: [BangPypers] HELP ME CHECK

2010-05-28 Thread Dipo Elegbede
Oh My, thanks for the correction. I'll look up the codes again and revert. Thanks peeps. On 5/27/10, Puneeth Chaganti wrote: > On Thu, May 27, 2010 at 8:52 PM, Dipo Elegbede > wrote: >> Hi all, >> >> I was reading through Alan Gauld's website: >> http://www.alan-g.me.uk/l2p/index.htm >> Under,

[BangPypers] pack data

2010-05-28 Thread murugadoss
Hello all, I am trying a sample program for send set of data [ kept in array]. I have attached the code below, import struct sendvalues = [181, 98, 11, 01] for i in range(4): snddata = struct.pack('int',int(sendvalue[i])) sendto(sndData,("localhost")) i am getting error as, Traceback (most rec

Re: [BangPypers] pack data

2010-05-28 Thread Noufal Ibrahim
On Fri, May 28, 2010 at 12:49 PM, murugadoss wrote: > Hello all, > > I am trying a sample program for send set of data [ kept in array]. I have > attached the code below, > > import struct > > sendvalues = [181, 98, 11, 01] > for i in range(4): > snddata = struct.pack('int',int(sendvalue[i])) > se

Re: [BangPypers] Tcp/ip server client program

2010-05-28 Thread Rahul R
welll i did try a client server program in TCP/IP , from http://www.jroller.com/RickHigh/entry/notes_on_creating_a_socket this tutorial . It helped me a lot , i hope it would help u too. On Fri, May 28, 2010 at 7:26 AM, Senthil Kumaran wrote: > On Thu, May 27, 2010 at 11:46:36PM +0900, murugado

Re: [BangPypers] pack data

2010-05-28 Thread Anand Balachandran Pillai
On Fri, May 28, 2010 at 12:56 PM, Noufal Ibrahim wrote: > On Fri, May 28, 2010 at 12:49 PM, murugadoss > wrote: > > Hello all, > > > > I am trying a sample program for send set of data [ kept in array]. I > have > > attached the code below, > > > > import struct > > > > sendvalues = [181, 98, 11