Coding/Python 삽질기2005. 5. 5. 01:28
[CODE]import urllib source = urllib.urlopen("http://linda.cse.pusan.ac.kr/~chobocho/chobocho.jpg") image = source.read() file = open("mine.jpg", "wb") file.write(image) file.close() [/CODE]

'Coding > Python 삽질기' 카테고리의 다른 글

웹페이지에서 이미지 긁어오기  (0) 2005.05.05
Python 관련 사이트 모음  (0) 2005.03.27
Simple Http Server 만들기  (0) 2005.03.24
Posted by chobocho