如何编写简单的bittorrent应用程序。像使用bittorrent库的“hello world”,我的意思是最简单的应用程序来理解bittorrent的工作。我更喜欢python或C / C ++实现,但它可以是任何语言。平台也不是问题,但我更喜欢Linux。
关于图书馆的建议,我已经从 - http://sourceforge.net/projects/bittorrent/develop下载了一个(我认为官方bittorrent)的源代码。但是,我在http://en.wikipedia.org/wiki/Comparison_of_BitTorrent_clients#Libraries看到了很多其他库。我很感激有关这方面的建议。
如果只有一台笔记本电脑,如何测试应用程序。
答案 0 :(得分:78)
你应该试试libtorrent(rasterbar)。 http://libtorrent.org
如果你想在python中编写你的客户端,在linux上安装它:
sudo apt-get install python-libtorrent
一个非常简单的python代码示例,用于下载torrent:
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'