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 |