7

我有要移动到很多服务器的大文件。现在我们使用 rsync,但我想尝试使用 bittorent。

我正在研究 Deluge 的代码,它是一个 Python bittorent 客户端,但它使用扭曲并且非常复杂。你知道什么高水平的吗?

编辑:我刚刚读到 Facebook 使用 Bittorent 进行代码部署。也许他们为此发布了他们的库,但我找不到。听说过吗?

4

2 回答 2

6

我绝对推荐libtorrent-rasterbar。这是一个带有 Python 绑定的 C++ 库。为 Deluge、Transmission、Miro 和许多其他 bittorrent 客户端提供动力的同一台。

与另一个 libtorrent(属于 rTorrent 项目的一部分)相比,这个 libtorrent 正在积极开发中,并支持所有现代协议扩展,如 DHT、元数据传输,甚至一些专有的 uTorrent 扩展,如对等交换 (PEX)。

API 有很好的文档记录。

正如您从以下功能齐全的简单客户端示例中看到的那样,您不需要了解底层协议的每一点(当然,这对您有很大帮助):

#!/bin/python
# Copyright Arvid Norberg 2008. Use, modification and distribution is
# subject to the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)


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'

PS Facebook 在http://developers.facebook.com/opensource/上有一个专门的开源项目页面。没有列出 bittorrent 实现。

于 2011-03-06T18:56:01.010 回答
2

最初的 BitTorrent 客户端是用 Python 编写的。你检查过吗?

于 2011-01-20T17:28:56.820 回答