블로그 이미지
잡다한 취미 생활 및 일상에 대한 소소한 이야기를 적어나가는 블로그입니다.
붉은kkk

공지사항

최근에 올라온 글

최근에 달린 댓글

글 보관함

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

'URL이미지'에 해당되는 글 1

  1. 2020.03.02 [29. URL 이미지 다운로드] URLRETRIEVE

파이썬을 이용해 URL에 있는 이미지를 다운로드 하는 방법에 대해 알아볼게요.

 

Code가 너무 간단해서 아래와 같이 정리해뒀어요. (너무... 쉽죠?)

 

상세 내용은 파이썬 공식 문서를 참조해주세요.

준비물
다운로드 받을 이미지의 URL 주소

 

<Code>

import urllib.request

urllib.request.urlretrieve("URL주소","저장할 파일위치")


urllib.request.urlretrieve(url, filename=None, reporthook=None, data=None)

Copy a network object denoted by a URL to a local file

https://docs.python.org/3/library/urllib.request.html

 

urllib.request — Extensible library for opening URLs — Python 3.8.2 documentation

urllib.request — Extensible library for opening URLs Source code: Lib/urllib/request.py The urllib.request module defines functions and classes which help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, coo

docs.python.org

 

이전 1 다음