A python script which downloads all images of a given website(s)
usage: ./img_downloader [--todir dir] [--filter regex] url [url ...]
dir is the directory of the script output - the downloaded images will be there. If this flag is omitted the images will be downloaded to the directory where the script was run from.
regex can be a regular expression (for syntax see here) Any image link the script finds on the website(s) that matches in any way the regex pattern will be filtered out - the image will not be downloaded. If the regular expression is not valid, it will be ignored and no images will be filtered out.
python 3.4
For now the original file names are being discarded - a uuid is generated for each file which serves as the file name - this was done in order to avoid name collisions.