ホームページ > バックエンド開発 > Python チュートリアル > Python 開発例は、BT シード クローラー プログラムとシード分析を共有します。

Python 開発例は、BT シード クローラー プログラムとシード分析を共有します。

WBOY
リリース: 2016-06-16 08:44:14
オリジナル
2044 人が閲覧しました

インターネット上にオープン ソース コードもあることを知りました。それを使用して 2 回書き直しました。笑、コードは次のとおりです。

コードをコピー コードは次のとおりです:

#encoding: utf-8
インポートソケット
ハッシュリブからインポート sha1
ランダムインポート randint から
構造体からインポート unpack、pack
ソケットからインポート inet_aton、inet_ntoa
from bisect import bisect_left
from threading import Timer
from time import sleep
import MySQLdb
from datetime import *
インポート時間
from bencode import bencode, bdecode
ブートストラップ_ノード= [
("router.bittorrent.com", 6881),
("dht.transmissionbt.com", 6881),
("router.utorrent.com", 6881)
]
TID_LENGTH = 4
KRPC_TIMEOUT = 10
REBORN_TIME = 5 * 60
K = 8
def entropy(bytes):
s = ""
範囲内の i の場合( bytes):
s += chr(randint(0, 255))
return s
defrandom_id():
hash = sha1()
hash.update( 20) )
return hash.digest()
def decode_nodes(nodes):
n = []
length = len(nodes)
if (length % 26) != 0:
return n
for i in range(0, length, 26):
nid = nodes[i:i+20]
ip = inet_ntoa(nodes[i+20:i+24])
port = unpack("!H", nodes[i+24:i+26])[0]
n.append( (nid, ip, port) )
return n
def encode_nodes (ノード):
strings = []
ノード内のノードの場合:
s = "%s%s%s" % (node.nid, inet_aton(node.ip), Pack("!H "、node.port))
strings.append(s)
return "".join(strings)
def intify(hstr):
return long(hstr.encode('hex') 、16)
def timer(t, f):
Timer(t, f).start()
class BucketFull(Exception):
pass
class KRPC(object):
def __init__(self):
self.types = {
"r": self.response_received,
"q": self.query_received
}
self.actions = {
「ping」: self.ping_received,
「find_node」: self.find_node_received,
「get_peers」: self.get_peers_received,
「announce_peer」: self.announce_peer_received,

self.socket =ソケット.socket(socket.AF_INET,ソケット.SOCK_DGRAM)
self.socket.bind(("0.0.0.0", self.port))
def response_received(self, msg, address):
self.find_node_handler(msg)
def query_received(self, msg, address):
try:
self.actions[msg["q"]](メッセージ、アドレス)
KeyError を除く:
pass
def send_krpc(self, msg, address):
try:
self.socket。 sendto(bencode(msg), address)
例外:
pass
class Client(KRPC):
def __init__(self, table):
self.table = table
timer(KRPC_TIMEOUT, self.timeout)
タイマー(REBORN_TIME、self. born)
KRPC.__init__(self)
def find_node(self, address, nid=None):
nid = self.get_neighbor(nid) if nid else self.table.nid
潮 = entropy(TID_LENGTH)
msg = {
"t": tid,
"y": "q",
"find _node",
"a": {" id": nid, "target": random_id()}

            self.send_krpc(msg, address) 
        def find_node_handler(self, msg): 
            try: 
                nodes = decode_nodes(msg["r"]["nodes"]) 
                for node in nodes: 
                    (nid, ip, port) = node 
                    if len(nid) != 20: continue 
                    if nid == self.table.nid: continue 
                    self.find_node( (ip, port), nid ) 
            except KeyError: 
                pass 
        def joinDHT(self): 
            for address in BOOTSTRAP_NODES:  
                self.find_node(address) 
        def timeout(self): 
            if len( self.table.buckets ) < 2:
self.joinDHT()
timer(KRPC_TIMEOUT, self.timeout)
def reborn(self):
self.table.nid = random_id()
self.table.buckets = [ KBucket(0, 2**160) ]
timer(REBORN_TIME, self.reborn)
def start(self):
self.joinDHT()
while True:
try:
(data, address) = self.socket.recvfrom(65536)
msg = bdecode(data)
self.types[msg["y"]](msg, address)
except Exception:
pass
def get_neighbor(self, target):
return target[:10]+random_id()[10:]
class Server(Client):
def __init__(self, master, table, port):
self.table = table
self.master = master
self.port = port
Client.__init__(self, table)
def ping_received(self, msg, address):
try:
nid = msg["a"]["id"]
msg = {
"t": msg["t"],
                    "y": "r",
"r": {"id": self.get_neighbor(nid)}
}
self.send_krpc(msg, address)
self.find_node(アドレス、nid)
KeyError を除く:
pass
def find_node_received(self, msg, address):
try:
target = msg["a"]["target"]
neighbors = self.table.get_neighbors(target)
nid = msg["a"]["id"]
msg = {
"t": msg["t"],
" y": "r",
"r": {
"id": self.get_neighbor(target),
"nodes": _nodes(neighbors)
}
}
self.table.append(KNode(nid, *address))
self.send_krpc(msg, address)
self.find_node(address, nid)
KeyError を除く:
pass
def get_peers_received(self, msg, address):
try:
infohash = msg["a"]["info_hash"]
neighbors = self.table.get_neighbors(infohash)
nid = msg ["a"]["id"]
msg = {
"t": msg["t"],
"y": "r",
「r」: {
「id」: self.get_neighbor(infohash),
「nodes」: encode_nodes(neighbors)
}

self.table.append(KNode(nid, *address))
self.send_krpc(msg, address)
self.master.log(infohash)
self.find_node(アドレス, nid)
KeyError を除く:
pass
def cancel_peer_received(self, msg, address):
try:
infoh ash = msg["a"]["info_hash"]
nid = msg ["a"]["id"]
msg = {
"t": msg["t"],
"y": "r",
「r」: {" id": self.get_neighbor(infohash)}
}
self.table.append(KNode(nid, *address))
self.send_krpc(msg, address)
self.master.log(infohash)
self.find_node(address, nid)
except KeyError:
pass
class KTable(object):
def __init__(self, nid):
self.nid = nid
self.buckets = [ KBucket(0, 2**160) ]
def append(self, node):
index = self.bucket_index(node.nid)
try:
bucket = self.buckets[index]
bucket.append(node)
except IndexError:
return
except BucketFull:
if not bucket.in_range(self.nid): return
self.split_bucket(index)
self.append(node)
def get_neighbors(self, target):
nodes = []
if len(self.buckets) == 0: return nodes
if len(target) != 20 : return nodes
index = self.bucket_index(target)
try:
nodes = self.buckets[index].nodes
min = index - 1
max = index + 1
while len(nodes) < K and ((min >= 0) or (max < len(self.buckets))):
if min >= 0: 
                        nodes.extend(self.buckets[min].nodes) 
                    if max < len(self.buckets): 
                        nodes.extend(self.buckets[max].nodes) 
                    min -= 1 
                    max += 1 
                num = intify(target) 
                nodes.sort(lambda a, b, num=num: cmp(num^intify(a.nid), num^intify(b.nid))) 
                return nodes[:K] 
            except IndexError: 
                return nodes 
        def bucket_index(self, target): 
            return bisect_left(self.buckets, intify(target)) 
        def split_bucket(self, index): 
            old = self.buckets[index] 
            point = old.max - (old.max - old.min)/2 
            new = KBucket(point, old.max) 
            old.max = point 
            self.buckets.insert(index + 1, new) 
            for node in old.nodes[:]: 
                if new.in_range(node.nid): 
                    new.append(node) 
                    old.remove(node) 
        def __iter__(self): 
            for bucket in self.buckets: 
                yield bucket 
    class KBucket(object): 
        __slots__ = ("min", "max", "nodes") 
        def __init__(self, min, max): 
            self.min = min 
            self.max = max 
            self.nodes = [] 
        def append(self, node): 
            if node in self: 
                self.remove(node) 
                self.nodes.append(node) 
            else: 
                if len(self) < K: 
                    self.nodes.append(node) 
                else: 
                    raise BucketFull 
        def remove(self, node): 
            self.nodes.remove(node) 
        def in_range(self, target): 
            return self.min <= intify(target) < self.max 
        def __len__(self): 
            return len(self.nodes) 
        def __contains__(self, node): 
            return node in self.nodes 
        def __iter__(self): 
            for node in self.nodes: 
                yield node 
        def __lt__(self, target): 
            return self.max <= target 
    class KNode(object): 
        __slots__ = ("nid", "ip", "port") 
        def __init__(self, nid, ip, port): 
            self.nid = nid 
            self.ip = ip 
            self.port = port
def __eq__(self, other):
return self.nid == other.nid
#using example
class Master(object):
def __init__(self , f):
self.f = f
try:
self.conn=MySQLdb.connect(host='localhost',user='root',passwd='',db='bt' ,port=3306)
self.cur=self.conn.cursor()
MySQLdb.Error を除く、e:
print "Mysql エラー %d: %s" % (e.args[0] , e.args[1])
def log(self, infohash):
try:
sql = "bt_main_new(hash,name,length,date) 値に挿入 (%s,%s, %s,%s)"
date = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
re=self.cur. execute(sql,(infohash,'','',date))
self.conn.commit()
self.cur.close()
self.conn.close()
# print re
MySQLdb.Error,e を除く:
print "Mysql Error %d: %s" % (e.args[0], e.args[1])
self.f.write( infohash.encode("hex")+"n")
self.f.flush()
try:
d = date.today()
f = open("%s.log " % d, "a")
m = Master(f)
s = Server(Master(f), KTable(random_id()), 8006)
s.start()
を除くキーボード割り込み:
s.socket.close()
f.close()

本爬虫程序、会自哈取得网上共有的bt种子、書込文件盒データ库、盗取的只一种子的ハッシュコード、又ネット上ダウンロード种子の分析を必要とします

ダウンロード种子,相信大家都知道國外有几个免费共有种子的网站,大家可以进入下載,分析,下面提示上我写的一分析种子の程序:

复制代码代码如下:

#! /usr/bin/python
# -*-coding: utf-8 -*-
import MySQLdb
from datetime import *
import time
import re
from time import sleep
import bencode
import urllib2
import Base64
try:
conn=MySQLdb.connect(host='localhost',user='root',passwd='',db='bt ',port=3306)
cur=conn.cursor()
sql = "select * from bt_main where name = '' order by id desc"
count = cur.execute(sql)
rows = cur.fetchall()
行内の行の場合:
if row[2].strip() != '':
continue
id = row[0]
hash = row[1]
url = "http://haofuli.duapp.com/go/info.php?hash=%s" % ハッシュ
ファイル = urllib2.urlopen(url).read()
「エラー!」の場合== file:
try:
sql = "update bt_main set isTrue = 0 where id = %s "
re = cur.execute(sql,(id))
conn.commit()
MySQLdb.Error,e を除く:
print "Mysql エラー %d: %s" % (e.args[0], e.args[1])
else:
#decode
try:
fileEncode = bencode.bdecode(file)
Exception,e:pass を除く
if 'name.utf-8' in fileEncode['info']:
filename=fileEncode[ 'info']['name.utf-8']
else:
filename = fileEncode['info']['name']
##length
if "length" in fileEncode[ 'info']:
length = fileEncode['info']['length']
else:
length = 0
try:
sql = "更新 bt_main セット名 = %s 、長さ = %s 、isTrue = 1 where id = %s"
re = cur.execute(sql,(base64.b64encode(filename),length,id))
conn.commit()
MySQLdb.Error,e を除く:
print "Mysql エラー %d: %s" % (e.args[0], e.args[1])
MySQLdb.Error,e を除く:
print "Mysql エラー %d: %s" % (e.args[0], e.args[1])

上は、複数のファイルに対する単純な分析だけであり、処理はありません。私が最近解析した時点では、巨大なファイルの充填の問題が発生しており、おそらくバージョンが低すぎて、最近古いものである可能性があります。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート