2014-07-20 2 views
0

안녕하세요. 코드 (아마도 urllib2가 아닌)에 문제가있는 것 같지만 진행률 표시 줄과 충돌이 발생하지 않을 것입니다. 그러나 코드 완성을 기다린 후 내 파일을 다운로드합니다. 교수형은 /는 GUI의 동결을 방지 할 수 있습니다진행률 표시 줄로 urllib2를 실행하면 프로그램이 깨집니다.

def iPod1(): 
pb = ttk.Progressbar(orient ="horizontal",length = 200, mode ="indeterminate") 
pb.pack(side="top") 
pb.start() 
download = "http://downloads.sourceforge.net/project/whited00r/7.1/Whited00r71-iPodTouch1G.zip?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fwhited00r%2Ffiles%2F7.1%2F&ts=1405674672&use_mirror=softlayer-ams" 
request = urllib2.urlopen(download) 
pb.start() 
output = open("Whited00r71-iPodTouch1G.zip", "wb") 
output.write(request.read()) 
output.close() 
pb.stop 
tkMessageBox.showinfo(title="Done", message="Download complete. Please follow the installation instructions provided in the .html file.") 
+0

전체 오류 메시지를 표시하십시오. 코드에는이 줄을 표시하는 문제가있는 줄이 있습니다. – furas

+0

console/terminal/cmd.exe에서 실행 했습니까? 콘솔을 닫을 때 console/terminal/cmd.exe에서 메시지를 받았습니까? – furas

+0

정말 좋지 않아? 코드는 전체 다운로드 중에 GUI를 확실히 차단/고정하지만 이후에 계속 진행해야합니다. – BlackJack

답변

0

: 나는 ... 내 코드는 다음과 같습니다 교수형을 방지하고 아마도 내가 파이썬에 약간의 경험을 가지고 작은 덩어리로 다운로드를 분해 할 수 어쨌든 있나요 다운로드를 자체 스레드로 이동합니다. GUI가 Tk 메인 루프가 실행중인 스레드가 아닌 다른 스레드에서 변경되면 안되기 때문에 다운로드 스레드가 완료되었는지 정기적으로 확인해야합니다. 이것은 대개 widget 객체에 대해 after() 메소드를 사용하여 지연된 함수 호출을 반복적으로 예약함으로써 수행됩니다.

로컬 파일에 쓰기 전에 전체 파일을 메모리로 읽지 않는 것은 shutil.copyfileobj()으로 수행 할 수 있습니다.

import shutil 
import tkMessageBox 
import ttk 
import urllib2 
from threading import Thread 

IPOD_1_URL = (
    'http://downloads.sourceforge.net/project/whited00r/7.1/' 
    'Whited00r71-iPodTouch1G.zip' 
    '?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fwhited00r%2Ffiles%2F7.1%2F' 
    '&ts=1405674672' 
    '&use_mirror=softlayer-ams' 
) 


def download(url, filename): 
    response = urllib2.urlopen(url) 
    with open(filename, 'wb') as output_file: 
     shutil.copyfileobj(response, output_file) 


def check_download(thread, progress_bar): 
    if thread.is_alive(): 
     progress_bar.after(500, check_download, thread, progress_bar) 
    else: 
     progress_bar.stop() 
     tkMessageBox.showinfo(
      title='Done', 
      message='Download complete. Please follow the installation' 
       ' instructions provided in the .html file.' 
     ) 


def start_download_for_ipod1(): 
    progress_bar = ttk.Progressbar(
     orient='horizontal', length=200, mode='indeterminate' 
    ) 
    progress_bar.pack(side='top') 
    progress_bar.start() 
    thread = Thread(
     target=download, args=(IPOD_1_URL, 'Whited00r71-iPodTouch1G.zip') 
    ) 
    thread.daemon = True 
    thread.start() 
    check_download(thread, progress_bar) 
+0

@ itechy21 그러면 버튼으로 호출 할 수있는 기능이 아닙니다. 'start_download_for_ipod1()'함수는 다운로드를 시작하는 함수입니다. – BlackJack

+0

삭제 해 주셔서 감사합니다. – iTechy