Python3 학습의 길 - URL을 통해 파일 다운로드

3357 단어 필기
그림의 URL을 통해 로컬 디렉터리에 다운로드하여 저장합니다.모듈:urllib.request 코드는 다음과 같습니다.
# coding=utf-8
import time
from urllib import request


def download(URL):
    req = request.Request(URL)
    res = request.urlopen(req)
    get_img=res.read()
    with open('F:\\csdn.jpg','wb')as f:
        f.write(get_img)
        print('download success')

if __name__ == '__main__':
    url = 'https://csdnimg.cn/pubfooter/images/csdn-cxrs.png'
    print(u'download starts at ' + time.strftime('%Y-%m-%d %H.%M.%S', time.localtime()))
    download(url)
    print(u'download ends at ' + time.strftime('%Y-%m-%d %H.%M.%S', time.localtime()))

좋은 웹페이지 즐겨찾기