A
A
Artyom2020-04-19 18:11:47
Parsing
Artyom, 2020-04-19 18:11:47

How to download all images from links?

Good day!
There is a table with links to pictures (www.website..../picture.jpg)
How to bulk upload pictures using these links?
Is there a free way?
Thank you!

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Artyom, 2020-04-20
@monkeybone

Thanks to all!
I found a macro for Excel that does this, I worked it out a little for myself
MACRO

S
Sergey Ilyin, 2020-04-19
@sunsexsurf

why not take advantage of the free cycle pass?
something along the lines of:

from PIL import Image
image_list = [тут у вас список ссылок с картинками]

for i in image_list:
    
    image = Image.open(i)
    image.save(имя картинки.png)

just think about how to give you the names of the pictures (yes, at least from another list, wai notes)
like
image_number = 1
image_name = 'file number {}.png'.format(image_number)

and then image_number increment by 1 for each new i in image_list
string formatting:
https://matthew-brett.github.io/teaching/string_fo...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question