本文整理汇总了Python中Tribler.Core.API.TorrentDef.set_tracker_hierarchy方法的典型用法代码示例。如果您正苦于以下问题:Python TorrentDef.set_tracker_hierarchy方法的具体用法?Python TorrentDef.set_tracker_hierarchy怎么用?Python TorrentDef.set_tracker_hierarchy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tribler.Core.API.TorrentDef
的用法示例。
在下文中一共展示了TorrentDef.set_tracker_hierarchy方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: subtest_add_content_announce_list
# 需要导入模块: from Tribler.Core.API import TorrentDef [as 别名]
# 或者: from Tribler.Core.API.TorrentDef import set_tracker_hierarchy [as 别名]
def subtest_add_content_announce_list(self,merkle=True):
""" Add a single file with announce-list to a TorrentDef """
t = TorrentDef()
t.set_create_merkle_torrent(merkle)
fn = os.path.join(os.getcwd(),"file.wmv")
t.add_content(fn)
t.set_tracker(TRACKER)
exphier = [[TRACKER],['http://tracker1.tribler.org:6969/announce','http://tracker2.tribler.org:7070/ann'],['http://www.cs.vu.nl','http://www.st.ewi.tudelft.nl','http://www.vuze.com']]
t.set_tracker_hierarchy(exphier)
t.finalize()
metainfo = t.get_metainfo()
self.general_check(metainfo)
realhier = metainfo['announce-list']
self.assert_(realhier == exphier)