Joe <[EMAIL PROTECTED]> wrote: > I'm trying to get the location of the image uisng > > start = s.find('<a href="somefile') + len('<a > href="somefile') > stop = s.find('">Save File</a></B>', > start) fileName = s[start:stop] > and then construct the url with the filename to download the image > which works fine as cause every image has the Save File link and I can > count number of images easy the problem is when there is more than image I > try using while loop downlaod files, wirks fine for the first one but > always matches the same, how can count and thell the look to skip the fist > one if it has been downloaded and go to next one, and if next one is > downloaded go to next one, and so on.
Pass the index from where the search must start as the second argument to the s.find method -- you're already doing that for the second call, so it should be pretty obvious it will also work for the first one, no? Alex -- http://mail.python.org/mailman/listinfo/python-list