我正在搜索在 libtorrent 中使用磁力链接期间如何在 torrent_info() 函数中传递参数。特别是我的目标是分析同行和作品。通过使用 .torrent 文件,该过程显然会在该站点中抛出其他给定的范例:
e = lt.bdecode(open("torrent.torrent", 'rb').read())
info = lt.torrent_info(e)
但是磁铁链接会发生什么?
params = {
'save_path': 'C:\Python26',
'storage_mode': lt.storage_mode_t(2),
'paused': False,
'auto_managed': True,
'duplicate_is_error': True}
link = "magnet:?........."
handle = lt.add_magnet_uri(ses, link, params)
为了能够正确使用 torrent_info 函数,在磁铁链接案例中哪个变量等效于 .torrent 进程的“e”?