91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

需要下載的文件,保存到urls.txt中即可,每行一個網址就可以

資源截圖

代碼片段和文件信息

import?os
import?urllib.request


def?get_pic_by_url(folder_path?lists):
????if?not?os.path.exists(folder_path):
????????print(“Selected?folder?not?exist?try?to?create?it.“)
????????os.makedirs(folder_path)
????for?url?in?lists:
????????print(“Try?downloading?file:?{}“.format(url))
????????filename?=?url.split(‘/‘)[-1]
????????filepath?=?folder_path?+?‘/‘?+?filename
????????if?os.path.exists(filepath):
????????????print(“File?have?already?exist.?skip“)
????????else:
????????????try:
????????????????urllib.request.urlretrieve(url?filename=filepath)
????????????except?Exception?as?e:
????????????????print(“Error?occurred?when?downloading?file?error?message:“)
????????????????print(e)


if?__name__?==?“__main__“:
????????path=‘urls.txt‘
????????with?open(path?‘r‘)?as?f:
????????????lines?=?f.readlines()
????????????url_list?=?[]
????????????for?line?in?lines:
????????????????url_list.append(line.strip(‘\n‘))
????????????foldername?=?“./pdf/“
????????????

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????34173??2020-03-04?15:43??urls.txt
?????文件????????1040??2020-03-04?15:41??download.py

評論

共有 條評論