当前位置:   article > 正文

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

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

经常看电影的朋友肯定对BT种子并不陌生,但是BT种子文件相对磁力链来说存储不方便,而且在网站上存放BT文件容易引起版权纠纷,而磁力链相对来说则风险小一些。

将BT种子转换为占用空间更小,分享更方便的磁力链还是有挺大好处的。

今天咱们来看下如何将种子转换成磁力链接,方案是:利用python的bencode模块,用起来比较简单

首先要安装这个模块,安装命令:

pip install bencode

bt2url.py

  1. #! /usr/local/bin/python
  2. # @desc python通过BT种子生成磁力链接
  3. # @date 2015/11/10
  4. # @author pythontab.com
  5. import bencode
  6. import sys
  7. import hashlib
  8. import base64
  9. import urllib
  10. #获取参数
  11. torrentName = sys.argv[1]
  12. #读取种子文件
  13. torrent = open(torrentName, 'rb').read()
  14. #计算meta数据
  15. metadata = bencode.bdecode(torrent)
  16. hashcontents = bencode.bencode(metadata['info'])
  17. digest = hashlib.sha1(hashcontents).digest()
  18. b32hash = base64.b32encode(digest)
  19. #打印
  20. print 'magnet:?xt=urn:btih:%s' % b32hash
python bt2url.py test.torrent
magnet:?xt=urn:btih:MWXFHXOGE2UMR7WBFZYEJPM3LF2VIHNH

 

转载于:https://my.oschina.net/liuyuantao/blog/749308

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/177162
推荐阅读
相关标签
  

闽ICP备14008679号