Is there a program/app for Ubuntu that allows to download several images from a page? To be exact, I want to get some pictures from the site
http://www.cookingforengineers.com/
Some of the recepies are an endless list of pics and I want to get them all together.
I tried DownThemAll with Firefox, but 1. I could only get the thumbnails and 2. I use Chrome now.
Despite being unfamiliar with coding, this should still do what you want. Of course, you're more than welcome to wait for another user to post a GUI solution.
Simply copy and paste the following code into a text document and save it as
dlimgs.py
. I recommend making a new folder in your home directory calledbin
and saving it there.Then open a terminal with Ctrl+Alt+T and do the following:
cd
command (Example:cd ~/bin
)python dlimgs.py <url>
It will download all the images and save them in the
~/bin
folder. Note that this was written specifically for the website you supplied in the question, and so will skip the header images at the top of the page. It will probably throw errors for other websites. One more note, it will overwrite any images with the same filenames in the~/bin
dir so be careful.