hash = hashlib.sha1(bittorrent.bencode(torrent['info'])).digest() cursor = connection.cursor()
cursor.execute("INSERT INTO `torrents`(`fid`, `info_hash`, `name`, `size`, `mtime`, `ctime`, `oid`) VALUES(%s, %s, %s, %s, %s, %s, %s)" , (id, hash, torrent['info']['name'], size, time(), time(), request.session['id']))
У кого-нибудь есть какие-нибудь мысли по этому поводу ?
З.Ы. MySQLdb.escape_string() и MySQLdb.Binary() не помогли :)