파이썬 파충류의 요청 도서관 - 크롤링 및 스토리지 네트워크 사진

import requests
import os

url="http://image.nationalgeographic.com.cn/2017/0211/20170211061910157.jpg"
root="D://"
path=root+url.split('/')[-1]
try:
    if not os.path.exists(root):
        os.mkdir(root)
    if not os.path.exists(path):
        r=requests.get(url)
        with open(path,'wb') as f:
            f.write(r.content)
            f.close()
            print("文件保存成功")
    else:
        print("文件已存在")
except:
    print("爬取失败")
출시 일곱 개 원래 기사 · 원의 칭찬 0 · 조회수 17

추천

출처blog.csdn.net/qq_44838702/article/details/104984694