当前位置:   article > 正文

python3 根据种子文件torrent获取磁力链接_python 解析magnet:?xt=urn:btih:

python 解析magnet:?xt=urn:btih:

依赖

pip install bencode.py

代码

  1. import bencode
  2. import hashlib
  3. from urllib.parse import quote
  4. def torrent_file_to_magnet(torrent_file):
  5. data = open(torrent_file, 'rb').read()
  6. metadata = bencode.bdecode(data)
  7. name = metadata['info']['name']
  8. dn = quote(name)
  9. info_bts = bencode.bencode(metadata['info'])
  10. info_hash = hashlib.sha1(info_bts).hexdigest()
  11. return f'magnet:?xt=urn:btih:{info_hash}&dn={dn}'
  12. if __name__ == '__main__':
  13. print(torrent_file_to_magnet('1.torrent'))

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

闽ICP备14008679号