Re: 2 python questions!

2007-09-06 Thread Laszlo Nagy
[EMAIL PROTECTED] wrote: Hi python community! First question has to do with threading support. There is the following simple case: I have a dictionnary that gets it's values -which are url's-from a function. Sort of dictionnary['1'] = http://www.google.com; dictionnary['2'] =

2 python questions!

2007-09-05 Thread resist_think
Hi python community! First question has to do with threading support. There is the following simple case: I have a dictionnary that gets it's values -which are url's-from a function. Sort of dictionnary['1'] = http://www.google.com; dictionnary['2'] = http://www.python.com; I need to

Re: 2 python questions!

2007-09-05 Thread Christof Winter
[EMAIL PROTECTED] wrote: [...] Now the second question has to do with images retrieval and manipulation. Which libraries do you propose to work with to retrieve and resize images from the web? urllib.urlretrieve() and Python Imaging Library (PIL) --