torrentCLI
1.0.0
sudo curl -s https://raw.githubusercontent.com/amogusussy/torrentCLI/main/torrentcli -o /usr/bin/torrentcli && sudo chmod +x /usr/bin/torrentcli
或者,您可以使用上述链接直接从浏览器下载脚本。
您可以通过输入torrentcli search query
来运行它。例如,如果您想要 Big Buck Bunny 种子,您可以输入torrentcli Big Buck Bunny
如果您是从浏览器下载的,则可以使用python3 /path/to/torrentcli search query
运行它
如果您安装了vlc-bittorrent
,则可以运行带有-s
标志的命令来流式传输 torrent。
这依赖于 Librex API。
您可以使用以下命令自行托管它:
git clone https://github.com/hnhx/librex/
cd librex
php -S localhost:8080
然后打开/usr/bin/torrentcli
并将site = random.choice(sites)
替换为site = 'http://localhost:8080'
默认情况下,这将使用 xdg-open,它特定于类 Unix 机器上的 Xorg 服务器。您可以通过编辑subprocess.run(["xdg-open", magnet])
来更改它,将 xdg-open 替换为您使用的任何 torrent 客户端。