首页 > 编程 > Python > 正文

使用Python实现BT种子和磁力链接的相互转换

2020-01-04 17:56:23
字体:
来源:转载
供稿:网友

这篇文章主要介绍了使用Python实现BT种子和磁力链接的相互转换的方法,有时比如迅雷无法加载磁力链接或者无法上传附件分享时可以用到,需要的朋友可以参考下

bt种子文件转换为磁力链接

BT种子文件相对磁力链来说存储不方便,而且在网站上存放BT文件容易引起版权纠纷,而磁力链相对来说则风险小一些。而且很多论坛或者网站限制了文件上传的类型,分享一个BT种子还需要改文件后缀或者压缩一次,其他人需要下载时候还要额外多一步下载种子的操作。

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

首先一个方案是使用bencode这个插件,通过pip方式安装或者自行下载源文件https://pypi.python.org/pypi/bencode/1.0通过python setup.py install方式安装均可。

相应的将BT种子转换为磁力链代码为:

 

  1. import bencode, hashlib, base64, urllib 
  2. torrent = open('ubuntu-12.04.2-server-amd64.iso.torrent''rb').read() 
  3. metadata = bencode.bdecode(torrent) 
  4. hashcontents = bencode.bencode(metadata['info']) 
  5. digest = hashlib.sha1(hashcontents).digest() 
  6. b32hash = base64.b32encode(digest) 
  7. params = {'xt''urn:btih:%s' % b32hash, 
  8. 'dn': metadata['info']['name'], 
  9. 'tr': metadata['announce'], 
  10. 'xl': metadata['info']['length']} 
  11. paramstr = urllib.urlencode(params) 
  12. magneturi = 'magnet:?%s' % paramstr 
  13. print magneturi 

还有另外一个效率相对较高,而且更方便的方案是安装libtorrent,在ubuntu只需要apt-get install python-libtorrent即可对应转换磁力链的代码为:

 

 
  1. import libtorrent as bt 
  2. info = bt.torrent_info('test.torrent'
  3. print "magnet:?xt=urn:btih:%s&dn=%s" % (info.info_hash(), info.name()) 

转换磁力链接为bt种子文件

下面来看一个反过程,将磁力链转化为种子文件。

1、需要先安装python-libtorrent包 ,在ubuntu环境下,可以通过以下指令完成安装:

 

 
  1. # sudo apt-get install python-libtorrent 

2、代码如下:

 

 
  1. #!/usr/bin/env python 
  2. import shutil 
  3. import tempfile 
  4. import os.path as pt 
  5. import sys 
  6. import libtorrent as lt 
  7. from time import sleep 
  8. def magnet2torrent(magnet, output_name=None): 
  9. if output_name and / 
  10. not pt.isdir(output_name) and / 
  11. not pt.isdir(pt.dirname(pt.abspath(output_name))): 
  12. print("Invalid output folder: " + pt.dirname(pt.abspath(output_name))) 
  13. print(""
  14. sys.exit(0) 
  15. tempdir = tempfile.mkdtemp() 
  16. ses = lt.session() 
  17. params = { 
  18. 'save_path': tempdir, 
  19. 'duplicate_is_error': True, 
  20. 'storage_mode': lt.storage_mode_t(2), 
  21. 'paused': False, 
  22. 'auto_managed': True, 
  23. 'duplicate_is_error': True 
  24. handle = lt.add_magnet_uri(ses, magnet, params) 
  25. print("Downloading Metadata (this may take a while)"
  26. while (not handle.has_metadata()): 
  27. try
  28. sleep(1) 
  29. except KeyboardInterrupt: 
  30. print("Aborting..."
  31. ses.pause() 
  32. print("Cleanup dir " + tempdir) 
  33. shutil.rmtree(tempdir) 
  34. sys.exit(0) 
  35. ses.pause() 
  36. print("Done"
  37. torinfo = handle.get_torrent_info() 
  38. torfile = lt.create_torrent(torinfo) 
  39. output = pt.abspath(torinfo.name() + ".torrent"
  40. if output_name: 
  41. if pt.isdir(output_name): 
  42. output = pt.abspath(pt.join( 
  43. output_name, torinfo.name() + ".torrent")) 
  44. elif pt.isdir(pt.dirname(pt.abspath(output_name))): 
  45. output = pt.abspath(output_name) 
  46. print("Saving torrent file here : " + output + " ..."
  47. torcontent = lt.bencode(torfile.generate()) 
  48. f = open(output, "wb"
  49. f.write(lt.bencode(torfile.generate())) 
  50. f.close() 
  51. print("Saved! Cleaning up dir: " + tempdir) 
  52. ses.remove_torrent(handle) 
  53. shutil.rmtree(tempdir) 
  54. return output 
  55. def showHelp(): 
  56. print(""
  57. print("USAGE: " + pt.basename(sys.argv[0]) + " MAGNET [OUTPUT]"
  58. print(" MAGNET/t- the magnet url"
  59. print(" OUTPUT/t- the output torrent file name"
  60. print(""
  61. def main(): 
  62. if len(sys.argv) < 2: 
  63. showHelp() 
  64. sys.exit(0) 
  65. magnet = sys.argv[1] 
  66. output_name = None 
  67. if len(sys.argv) >= 3: 
  68. output_name = sys.argv[2] 
  69. magnet2torrent(magnet, output_name) 
  70. if __name__ == "__main__"
  71. main() 

3、用法如下

  1. # python Magnet_To_Torrent2.py <magnet link> [torrent file] 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表