我正在尝试获取对等列表:来自洪流跟踪器的 IP 地址列表
类似于这里的问题:how to get peer list from torrent tracker response
我使用 python bencode Bit-torrent 库编写了解码 torrent 文件的代码, 我在此代码之后编写了代码来抓取 torrent 跟踪器。
至少对于像 mininova 跟踪器这样的 http 请求,我得到特定 info_hash 的以下输出
{'files': {'\xbf\xff&\xcdY\x05\x9b\xb2C2j\x83\xf5F_\x9bg\x9d\xe2G': {'downloaded': 25416, 'complete': 12, 'incomplete': 0}}}
我没有看到 BitTorrent在规范中记录的任何其他密钥。(如 tracker_id、min_interval、peers ...等)
如何获取对等列表?