프로그래밍언어/Python

파일 다운로드

부산딸랑이 2014. 9. 25. 02:45

def downloadtorrent(url):
    f = urllib.request.urlopen(url)
    with open("t.torrent", "wb") as code:
        code.write(f.read())
    #subprocess.Popen("t.torrent")
    os.system('start ' + 't.torrent')

'프로그래밍언어 > Python' 카테고리의 다른 글

주절주절) Sl4a 활용하기..  (0) 2014.10.02
파이썬 url인코딩  (0) 2014.09.25
REGEX  (0) 2014.09.17
어제날짜구하기  (0) 2014.08.20
파이썬 파일생성  (0) 2014.08.20