linux下制作BT种子与获取BT种子信息的实例教程

发布时间:2019-12-20编辑:脚本学堂
本文详细介绍了在linux系统中,制作BT种子,以及获取BT种子信息的方法,有需要的朋友参考下。

介绍下在linux下制作BT种子并获取BT种子信息的方法。

制作BT种子软件下载地址:
http://jaist.dl.sourceforge.net/project/mktorrent/mktorrent/1.0/mktorrent-1.0.tar.gz

1,安装:
 

复制代码 代码示例:
[root@localhost src]# tar zxf mktorrent-1.0.tar.gz
[root@localhost src]# cd mktorrent-1.0
[root@localhost mktorrent-1.0]# make
[root@localhost mktorrent-1.0]# make install
[root@localhost ~]# which mktorrent
/usr/local/bin/mktorrent

需要用到python的bencode模块来获取BT种子信息。
bencode模块 下载地址:https://pypi.python.org/packages/source/b/bencode/bencode-1.0.tar.gz

2,安装:
 

复制代码 代码示例:
#tar -zxf bencode-1.0.tar.gz
#cd bencode-1.0.tar.gz
#python setup.py install

3,制作和验证的python脚本
 

复制代码 代码示例:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os, re, time, sys
import hashlib, bencode
file_name = 'bt_test.exe'
bt_source = '/data/updir/%s' % file_name
bt_name = '/data/source/%s.torrent' % file_name
if os.path.exists(bt_name):
    os.remove(bt_name)
if os.path.exists(bt_source):
    conm = "/usr/local/bin/mktorrent -v -p -l 18 -a http:/www.jb200.com/announce -a http://www2.jb200.com/announce -o %s %s" % (bt_name,bt_source)
    res = os.popen(conm).readlines()[-1].strip()
    if 'done' in res:
        bt_path = {}
        bt_file = open(bt_name, 'rb')
        bt_info = bencode.bdecode(bt_file.read()).get('info')
        bt_info_hash_hex = hashlib.sha1(bencode.bencode(bt_info)).hexdigest()
        if os.path.isdir(bt_source):
            bt_file_size = 0
            for length in bt_info.get('files'):
                bt_file_size = bt_file_size + int(length['length'])
                bt_path['/'.join(length['path'])] = length['length']
        else:
            bt_file_size = bt_info.get('length')
            bt_file_name = bt_info.get('name')
            bt_path[bt_file_name]=bt_file_size
        bt_file.close()
        print bt_path
        print "Create torrent success"
    else:
        print "Create torrent Error"
        sys.exit()
else:
    print "This source not find"
    sys.exit()
#file_name为做种的文件或目录名字。

您可能感兴趣的文章:
python爬虫 python采集联想词
Python web爬虫的小例子
python 网络爬虫(经典实用型)
Python 网易新闻小爬虫的实现代码
python网络爬虫的代码
python 实现从百度开始不断搜索的爬虫
python编写分布式爬虫的思路
Python实现天气预报采集器(网页爬虫)的教程