import urllib2
url = "http://download.thinkbroadband.com/10MB.zip"
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)
file_size_dl = 0
block_sz = 8192
while True:
buffer = u.read(block_sz)
if not buffer:
break
file_size_dl += len(buffer)
f.write(buffer)
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
status = status + chr(8)*(len(status)+1)
print status,
f.close()
Source: http://stackoverflow.com/questions/22676/how-do-i-download-a-file-over-http-using-python
물론 간단히 네줄이면 끝난다. 파이썬 강점이 직관적인 프로그램 작성이 아니겠는가.
f = open('test.html', 'wb')
response = urllib2.urlopen("http://readiz.com/)
f.write(response.read())
f.close()
두가지 경우의 경우 모두 다 알고 있으면 더 좋을 듯 싶다.
'Creation > Python' 카테고리의 다른 글
[Python DIY] 대량메일(일 500건) 발송 메뉴얼 (12) | 2014.02.27 |
---|---|
[Python] 1~9 까지 숫자 한번만 써서 푸는 수학문제 풀기 (10) | 2014.02.16 |
[Python] 한글로 된 메일 Gmail(지메일) 자동대량발송 하기 (1) | 2014.02.10 |
[Python] 파이썬으로 메일(Gmail) 대량발송하기 (0) | 2014.01.02 |
[Python] 파이썬을 이용한 Cookie 유지방법 (1) | 2013.11.06 |