On 28/08/2013 07:23, mukesh tiwari wrote:
[snip]
Initially I blocked the main using raw_input('') and it was working fine.
u = Downloader()
signal.signal( signal.SIGINT , u.handleexception)
thread.start_new_thread ( u.createurl , () )
for i in xrange ( 5 ) :
thread.start_new_thread
On Tue, 27 Aug 2013 12:41:10 -0700, mukesh tiwari wrote:
> Hello All,
> I am doing web stuff first time in python so I am looking for
> suggestions. I wrote this code to download the title of webpages using
> as much less resource ( server time, data download) as possible and
> should be fast eno
On Wednesday, 28 August 2013 04:03:15 UTC+5:30, MRAB wrote:
> On 27/08/2013 21:53, mukesh tiwari wrote:
>
> > On Wednesday, 28 August 2013 01:49:59 UTC+5:30, MRAB wrote:
>
> >> On 27/08/2013 20:41, mukesh tiwari wrote:
>
> >>
>
> [snip]
>
> >> > if __name__== '__main__':
>
> >> >
On 27/08/2013 21:53, mukesh tiwari wrote:
On Wednesday, 28 August 2013 01:49:59 UTC+5:30, MRAB wrote:
On 27/08/2013 20:41, mukesh tiwari wrote:
[snip]
>> > if __name__== '__main__':
>> > u = Downloader()
>> > signal.signal( signal.SIGINT , u.handleexception)
>> > thread.start_new_thread
On Wednesday, 28 August 2013 01:49:59 UTC+5:30, MRAB wrote:
> On 27/08/2013 20:41, mukesh tiwari wrote:
>
> > Hello All,
>
> > I am doing web stuff first time in python so I am looking for suggestions.
> > I wrote this code to download the title of webpages using as much less
> > resource ( se
On 27/08/2013 20:41, mukesh tiwari wrote:
Hello All,
I am doing web stuff first time in python so I am looking for suggestions. I
wrote this code to download the title of webpages using as much less resource (
server time, data download) as possible and should be fast enough. Initially I
used