新建文件夹:
import os
import requests
response = requests.get(url)
dirname="test"
#创建名为test的文件夹
os.mkdir(dirname)
#此处相当于文件路径 test/image.jpg,也就是在test文件夹中的image.jpg文件
filename=dirname+‘/‘+‘image.jpg‘
#打开文件夹并写入图片
with open(filename,‘wb‘) as f:
f.write(response.content)
原文地址:https://www.cnblogs.com/hexia7935/p/9960368.html
时间: 2024-10-11 10:53:29