gpt4 book ai didi

python - 如何使用 python 和 Torrent Reactor API 下载 torrent?

转载 作者:行者123 更新时间:2023-12-01 06:13:35 43 4
gpt4 key购买 nike

http://www.torrentreactor.to/torrents_search_rss.php

如何进行 API 调用,然后一旦获得 XML 响应,我想自动选择具有最高编号的单个文件。种子和同伴并自动下载。我如何在 python 中做到这一点?

注意:我尝试对其进行编码,但它给了我一个响应:错误:无效的订单创建

最佳答案

看来您的查询字符串错误:this

http://www.torrentreactor.to/torrents_search_rss.php?q=portal&o=ul&d=desc

对我来说效果很好。下载后,在 feedparser 的帮助下解析它。库并(假设您将调用 feed 对象 torrents)以这种方式获取第一个 url:torrent.links[1].rel

要保存 torrent 文件,一旦获得 url,请使用 urllib2:

opener = urllib2.build_opener()
torrent = opener.open(url)
savefile = open(torrent_name, "wb")
savefile.write(torrent)
savefile.close()

您必须导入:webbrowser、urllib、os。

关于python - 如何使用 python 和 Torrent Reactor API 下载 torrent?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4506086/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com