如何按顺序从网站下载所有图片,从1到1000命名
How to download all the images from the website in order, naming them from 1 to 1000
我想从网站上下载所有 jpg 和 png 图像,但我需要按顺序下载它们,如果可能的话,也许可以在下载过程中命名它们。例如下载 1000 张图片,顺序为从 1 到 1000,并附上订单名称。例如,第 3 张图片将被命名为 3,或者 300 张图片将被命名为 300。我是编码新手,我的项目需要这个。我可以手动下载它们,但这需要时间,我想学习如何自动化这个过程。
您可以使用以下方法
# IMPORT LIBRARIES
# choose libraries to be used
def download_images_from_url(url):
count = 1 # initialize counter
# loop
# write code to download the image from website
# write code to store it locally
# rename the image using count variable
count+=1 #update counter
url = "https://www.website.com"
download_images_from_url(url)
我想从网站上下载所有 jpg 和 png 图像,但我需要按顺序下载它们,如果可能的话,也许可以在下载过程中命名它们。例如下载 1000 张图片,顺序为从 1 到 1000,并附上订单名称。例如,第 3 张图片将被命名为 3,或者 300 张图片将被命名为 300。我是编码新手,我的项目需要这个。我可以手动下载它们,但这需要时间,我想学习如何自动化这个过程。
您可以使用以下方法
# IMPORT LIBRARIES
# choose libraries to be used
def download_images_from_url(url):
count = 1 # initialize counter
# loop
# write code to download the image from website
# write code to store it locally
# rename the image using count variable
count+=1 #update counter
url = "https://www.website.com"
download_images_from_url(url)