web-dev-qa-db-ja.com

単純なBittorrentアプリケーションを作成する方法は?

単純なbittorrentアプリケーションの作成方法。ビットトレントライブラリを使用した「hello world」のようなものです。ビットトレントの動作を理解するための最も単純なアプリケーションを意味します。 pythonまたはC/C++の実装をお勧めしますが、どの言語でもかまいません。プラットフォームも問題ではありませんが、Linuxをお勧めします。

ライブラリが従うべき推奨事項、私は1つ(公式のbittorrentだと思う)のソースコードを- http://sourceforge.net/projects/bittorrent/develop からダウンロードしました。しかし、他の多くのライブラリが http://en.wikipedia.org/wiki/Comparison_of_BitTorrent_clients#Libraries にあります。これについての推奨をお願いします。

ノートパソコンが1台しかない場合にアプリケーションをテストする方法。

34
Vivek Sharma

Libtorrent(ラスターバー)を試してみてください。 http://libtorrent.org

クライアントをpython、linuxで作成する場合は、次のコマンドでインストールします。

Sudo apt-get install python-libtorrent

pythonコードを使用した急流のダウンロードに使用する非常に簡単な例:

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'
80
Arvid