batch download pics

Discuss how to download pictures from websites using PicaLoader.
(NO adult contents and advertisement please.)
Post Reply
andy666
Posts: 1
Joined: Fri Aug 29, 2008 7:51 am

batch download pics

Post by andy666 »

Hi Bios,

How can i download the pics with those sequence.

http://mh.xindm.net/book2/y/yw/02/000001.jpg
http://mh.xindm.net/book2/y/yw/02/001002.jpg
http://mh.xindm.net/book2/y/yw/02/002003.jpg
...
...
http://mh.xindm.net/book2/y/yw/02/222223.jpg
http://mh.xindm.net/book2/y/yw/02/223224.jpg

Thanks.

I have tried set
http://mh.xindm.net/book2/y/yw/02/[000-223][001-224].jpg
however that maked 6xxxx URLs for download 224 pics.
User avatar
KoalaBear
Posts: 325
Joined: Wed Sep 24, 2003 5:27 pm

Re: batch download pics

Post by KoalaBear »

start URL: http://www.google.com
(or any other URL you can access)
HTML Parser Script:

if (HTML.Level==0) then
for i=0,223 do
url=string.format('http://mh.xindm.net/book2/y/yw/02/%03d%03d.jpg',i,i+1);
AddLink(url,HTML.Url,HTML.Title,'',HTML.TaskID,1);
end;
else
DefaultParser(HTML.Content, HTML.Url, HTML.Title, HTML.TaskID, HTML.Level);
end;
Post Reply