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

2010-05-27 Thread Senthil Kumaran
On Fri, May 28, 2010 at 10:41:23AM +0530, Noufal Ibrahim wrote: > and renders it properly (links, TOC etc.). It looks much better than > a raw text->pdf conversion. The crawling, combining still has to be Except for the heading in the PEP data. The solution would be to indent it so that it behave

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

2010-05-27 Thread Noufal Ibrahim
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 PEPS are available in text format from > http://svn.python.org/projects

Re: [BangPypers] Tcp/ip server client program

2010-05-27 Thread Senthil Kumaran
On Thu, May 27, 2010 at 11:46:36PM +0900, murugadoss wrote: > I am trying out client/server program in python using both udp and tcp/ip. > UDP is working,but for tcp/ip program, i get an error as Please share the snippet of client and server code. > KeyboardInterrupt means you pressed CNTL+C or

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

2010-05-27 Thread Senthil Kumaran
On Thu, May 27, 2010 at 04:30:12PM +0530, Srinivas Reddy Thatiparthy wrote: > Does anyone compiled all PEP's into a PDF document or chm file.I > searched the internet but didn't get it.If you guys found pdf/chm > file, please send the link. You got the pdf version from Anand. Active State Distri

Re: [BangPypers] HELP ME CHECK

2010-05-27 Thread Puneeth Chaganti
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, Handling files, I copied the following codes and tried to run > it but it didn't. > I have written to him though but would like to get so

[BangPypers] HELP ME CHECK

2010-05-27 Thread Dipo Elegbede
Hi all, I was reading through Alan Gauld's website: http://www.alan-g.me.uk/l2p/index.htm Under, Handling files, I copied the following codes and tried to run it but it didn't. I have written to him though but would like to get someone to look at it for me again. I have pasted the code in the past

[BangPypers] Tcp/ip server client program

2010-05-27 Thread murugadoss
Hello, I am trying out client/server program in python using both udp and tcp/ip. UDP is working,but for tcp/ip program, i get an error as Traceback (most recent call last): File "./server.py", line 11, in client_socket, address = server_socket.accept() File "/usr/local/lib/python2.5/soc

Re: [BangPypers] HELLO WORLD

2010-05-27 Thread anil kumar
Hi, for beginners you could get hold of a book "Byte of python" very good for noobs and for code analysis you could use paste bins like http://pastebin.com and give us a link and some of us can help you with the corrections. regards, Anil On Thu, May 27, 2010 at 5:33 PM, Dipo Elegbede wrote

[BangPypers] HELLO WORLD

2010-05-27 Thread Dipo Elegbede
This is about my first mail to this group and so I think it is just reasonable to start with the ritual incantation. HELLO WORLD. I am new in Python and I'm already getting help from similar mailing group. I have however come to conclude I need a one on one tutor to help me out. Someone had been

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

2010-05-27 Thread Anand Chitipothu
> pytext2pdf can be obtained from > http://code.activestate.com/recipes/532908-text-to-pdf-converter-rewrite/ > (yeah, I wrote it, so this is a bit of self-trumpeting!) Wow, that looks interesting. Do you know how to make it work with unicode text? Anand __

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

2010-05-27 Thread Anand Balachandran Pillai
On Thu, May 27, 2010 at 4:55 PM, Anand Balachandran Pillai < abpil...@gmail.com> wrote: > > > On Thu, May 27, 2010 at 4:30 PM, Srinivas Reddy Thatiparthy < > srinivas_thatipar...@akebonosoft.com> wrote: > >> Hi list, >> >> Does anyone compiled all PEP's into a PDF document or chm file.I searched >

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

2010-05-27 Thread Anand Balachandran Pillai
On Thu, May 27, 2010 at 4:30 PM, Srinivas Reddy Thatiparthy < srinivas_thatipar...@akebonosoft.com> wrote: > Hi list, > > Does anyone compiled all PEP's into a PDF document or chm file.I searched > the internet but didn't get it.If you guys found pdf/chm file, please send > the link. > > Why do y

[BangPypers] Any compiled all PEP's into pdf

2010-05-27 Thread Srinivas Reddy Thatiparthy
Hi list, Does anyone compiled all PEP's into a PDF document or chm file.I searched the internet but didn't get it.If you guys found pdf/chm file, please send the link. TIA, Srinivas Reddy Thatiparthy. ___ BangPypers mailing list BangPypers@python

Re: [BangPypers] Program_to_catch_changes_in_webpage

2010-05-27 Thread Vishal
Hi, See if this makes sense for your needs: Adrian Holovaty, one of the makers of Django, has solved the Outlook Web Access new email notification problem by using a python module to do some screen scrapping to find out if a new mail has come in. http://www.holovaty.com/writing/331/ Take care, V

Re: [BangPypers] Program_to_catch_changes_in_webpage

2010-05-27 Thread Noufal Ibrahim
On Thu, May 27, 2010 at 12:35 PM, nikunj badjatya wrote: > Hi All, > I am actually using a web interface for outlook mails. Pointing the link to > my browser opens a page which shows me all my mails. > I had to refresh it to check for a new mail.  Many a times I was very late > to send a reply bec

Re: [BangPypers] [Tutor] Program_to_catch_changes_in_webpage

2010-05-27 Thread nikunj badjatya
Hi, >Is it the standard Outlook Web Access(OWA) tool that >comes with MS Exchange? Yes. >Are you trying to write a script that talks to the web >browser to refresh the page? Or are you looking to monitor >the server? Yes, Talking to the web browser seems to be easiest way without notifying admi

[BangPypers] Program_to_catch_changes_in_webpage

2010-05-27 Thread nikunj badjatya
Hi All, I am actually using a web interface for outlook mails. Pointing the link to my browser opens a page which shows me all my mails. I had to refresh it to check for a new mail. Many a times I was very late to send a reply because of it. So a thought to make a script which will automatically r