跳到主要内容
  1. Posts/

Python 从 CSV 下载文件

··44 字·1 分钟·

CSV 文件 #

img01,https://img.xxx.com/a/b/c/1.jpg
img02,https://img.xxx.com/a/b/c/2.jpg
img03,https://img.xxx.com/a/b/c/3.jpg
img04,https://img.xxx.com/a/b/c/4.jpg

Python 代码 #

import csv
import requests

with open("urls.csv") as f:

    f_csv = csv.reader(f)

    for row in f_csv:
        img_name = row[0]
        img_url = row[1]
        file_path = "./imgs/"+img_name+".png"
        r = requests.get(img_url)
        with open(file_path, "wb") as save_file:
            save_file.write(r.content)
        print(img_name+" download complete")