python3 기준으로 작성하였습니다.
import urllib.request
opener=urllib.request.build_opener()
opener.addheaders=[(
'User-Agent','Mozilla/5.0 (Windows NT 6.1; WOW64)
AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/36.0.1941.0 Safari/537.36')]
urllib.request.install_opener(opener)
url = 'test.jpg'
urllib.request.urlretrieve(url , 'file.jpg')
'Python' 카테고리의 다른 글
[python] Cython 으로 c, pyd 로 converting 하기 (8) | 2020.05.07 |
---|---|
[Python] 파이썬 실행 시 관리자 권한인지 확인 (10) | 2020.05.06 |
[Python] 파일 이동, 복사 (shutil) (30) | 2020.04.20 |
[Python] ipstack api 이용하여 사용자 위치(경도, 위도) 얻기 (10) | 2020.04.09 |
[Python] Windows 에 pip 설치하기 (15) | 2020.03.31 |