实战Python实现BT种子转化为磁力链接
当前位置:以往代写 > Python教程 >实战Python实现BT种子转化为磁力链接
2019-06-14

实战Python实现BT种子转化为磁力链接

实战Python实现BT种子转化为磁力链接

常常看影戏的伴侣必定对BT种子并不生疏,可是BT种子文件相对磁力链来说存储不利便,并且在网站上存放BT文件容易引起版权纠纷,而磁力链相对来说则风险小一些。

将BT种子转换为占用空间更小,分享更利便的磁力链照旧有挺大长处的。

本日咱们来看下如何将种子转换成磁力链接,方案是:操作python的bencode模块,用起来较量简朴

首先要安装这个模块,安装呼吁:

pip install bencode

假如没有安装pip,请移步《详解python包揽理器pip安装》

实战代码

安装完成后,我们来看下代码:

系统情况:Linux

Python情况:Python2.7

请留意python版本

bt2url.py

#! /usr/local/bin/python
# @desc python通过BT种子生成磁力链接 
# @date 2015/11/10
# @author pythontab.com
import bencode
import sys
import hashlib
import base64
import urllib
#获取参数
torrentName = sys.argv[1]
#读取种子文件
torrent = open(torrentName, 'rb').read()
#计较meta数据
metadata = bencode.bdecode(torrent)
hashcontents = bencode.bencode(metadata['info'])
digest = hashlib.sha1(hashcontents).digest()
b32hash = base64.b32encode(digest)
#打印
print 'magnet:?xt=urn:btih:%s' % b32hash

如何利用?

呼吁:

python bt2url.py test.torrent

功效:

magnet:?xt=urn:btih:MWXFHXOGE2UMR7WBFZYEJPM3LF2VIHNH

    关键字:

在线提交作业