how to download gallery from www.deviantart.com

Discuss how to download pictures from websites using PicaLoader.
(NO adult contents and advertisement please.)
User avatar
KoalaBear
Posts: 325
Joined: Wed Sep 24, 2003 5:27 pm

Post by KoalaBear »

a fast way:
start url:http://browse.deviantart.com/?catpath=traditional/drawings/fantasy/&offset=120
uncheck support j/vb/javascript
page url include filters:-\d+$
(change to -\d+$;offset=\d+$ for download all pages)
picture url include filters:fc\d+\.deviantart\.com
HTML Parser Script:
if (string.find(HTML.Url,'-%d+')) then
local s,e=string.find(HTML.Content,'fullview');
if (s and e) then
s=string.find(HTML.Content,'http',e+1);
if (s) then
e=string.find(HTML.Content,'jpg',s+5);
if (e) then
local url=string.sub(HTML.Content,s,e+2);
url=string.gsub(url,'\\/','/');
AddLink(url,HTML.Url,HTML.Title,'',HTML.TaskID,0);
end
end
end
else
DefaultParser(HTML.Content,HTML.Url,HTML.Title,HTML.TaskID,HTML.Level);
end
Attachments
deviantart2.plt
(9.93 KiB) Downloaded 71 times
DarkAgdistis
Posts: 2
Joined: Mon Apr 28, 2008 9:46 pm

Super ...

Post by DarkAgdistis »

:D It works exactly as expected ! 1000 thanks.

do you think it could be possible one day for you to illustrate/comments the way the html parser works ? I guess it would help people to tune it for their own use.

Anyway, thanks again.
coelhocoelho
Posts: 1
Joined: Sun Jun 29, 2008 2:52 pm

Post by coelhocoelho »

please koala help! download from gallery deviantart doesnt´s works!
please
i wanna download from

http://www.racca.deviantart.com/gallery

how i did that?
i allready try alls this ways up, the abstract search and etc but that´s is doesnt working, please helpme, what can i do?

thnx!
User avatar
KoalaBear
Posts: 325
Joined: Wed Sep 24, 2003 5:27 pm

Post by KoalaBear »

all about download largest pics from DeviantArt migrated to this article:
DeviantArt downloader
:D
winse
Posts: 2
Joined: Fri Oct 17, 2008 12:36 am

Re: how to download gallery from www.deviantart.com

Post by winse »

but now..I can't down deviantart picture
help me plz Orz
winse
Posts: 2
Joined: Fri Oct 17, 2008 12:36 am

Re: how to download gallery from www.deviantart.com

Post by winse »

it's OK after download deviantart.plt :)
Post Reply