Download Benign/Malignant Images From Archive

Hi,

I am trying to download benign and malignant images from the archive, but do not know which filter to use:

isic image download --search ‘?’ images/

Ultimately I would like to download the benign images to images/benign and the malignant images to images/malignant.
Those are the benign images in the gallery for example:
Screen Shot 2022-10-06 at 21.20.26

Any help would be greatly appreciated.

I would run two download commands here, one for benign and one for malignant.

mkdir images
isic image download --limit 0 --search 'benign_malignant:benign' images/benign 
isic image download --limit 0 --search 'benign_malignant:malignant' images/malignant 

The --limit 0 portion just makes sure all of the images are downloaded instead of a small sample.

Thanks a lot!