파충류 (2) - 그림 저장

1180 단어 Python파충
import requests

image_url = "http://www.trustrobot.cn/Public/Images/home/2017_A1.jpg"
pwd = "D:/01.jpg"


def downfile(file, url):
    print("    :", file, url)
    r = requests.get(url, stream=True)
    with open(file, 'wb') as fd:
        for chunk in r.iter_content():
            fd.write(chunk)


downfile(pwd, image_url)

좋은 웹페이지 즐겨찾기