몇 가지 간단한 PyQt 토런트 클라이언트를 작성하고 싶지만 그걸로 몇 가지 걸림돌이 있습니다. PyQt 코드에서 파일 다운로드 (libtorrent를 사용하는 간단한 코드)를 처리하는 루프를 실행하고 싶습니다. 토런트 다운로드가 작동하면 UI가 표시되지 않지만 호출 된 함수의 순서를 변경하면 UI가 표시되지만 다운로드가 작동하지 않습니다. QThreads에 대해 읽었지 만 나에게 조금 어렵다. 누구나 QThread의 작동 방식과 libtorrent와 함께 사용하는 방법을 설명 할 수 있습니까? 내가 상상QThreads를 PyQt에서 libtorrent와 함께 사용하는 방법은 무엇입니까?
import libtorrent as lt
import time
import sys
ses = lt.session()
ses.listen_on(6881, 6891)
info = lt.torrent_info(sys.argv[1])
h = ses.add_torrent({'ti': info, 'save_path': './'})
print 'starting', h.name()
while (not h.is_seed()):
s = h.status()
state_str = ['queued', 'checking', 'downloading metadata', \
'downloading', 'finished', 'seeding', 'allocating', 'checking fastresume']
print '\r%.2f%% complete (down: %.1f kb/s up: %.1f kB/s peers: %d) %s' % \
(s.progress * 100, s.download_rate/1000, s.upload_rate/1000, \
s.num_peers, state_str[s.state]),
sys.stdout.flush()
time.sleep(1)
print h.name(), 'complete'
그게 내 목적입니다. –