Automatically Download Multiple Images.
pip install url-into-images
conda install -c conda-forge url-into-images
scrape-search-engine-feedstock
provide image download link through csv file and it will download all the images. also you can chose different extension.
• jpg
• jpeg
• png
• bmp
• gif
URL_PATH = ('') # csv file where image URL contain
IMAGE_PATH = ('') # Download image path
from url_into_images.url_into_images import url_jpg
url_jpg(URL_PATH, IMAGE_PATH)
from url_into_images.url_into_images import url_jpeg
url_jpeg(URL_PATH, IMAGE_PATH)
from url_into_images.url_into_images import url_png
url_png(URL_PATH, IMAGE_PATH)
from url_into_images.url_into_images import url_bmp
url_bmp(URL_PATH, IMAGE_PATH)
from url_into_images.url_into_images import url_gif
url_gif(URL_PATH, IMAGE_PATH)
• pip install pandas
MIT Licensed
Sujit Mandal