38def response(resp):
39 results = []
40
41 dom = html.fromstring(resp.text)
42
43 search_res = dom.xpath('//div[@class="one_result"]')
44
45
46 if not search_res:
47 return []
48
49
50 for result in search_res:
51 link = result.xpath('.//div[@class="torrent_name"]//a')[0]
52 href = urljoin(url, link.attrib.get('href'))
53 title = extract_text(link)
54
55 excerpt = result.xpath('.//div[@class="torrent_excerpt"]')[0]
56 content = html.tostring(excerpt, encoding='unicode', method='text', with_tail=False)
57 content = content.strip().replace('\n', ' | ')
58 content = ' '.join(content.split())
59
60 filesize = result.xpath('.//span[@class="torrent_size"]/text()')[0]
61 files = (result.xpath('.//span[@class="torrent_files"]/text()') or ['1'])[0]
62
63
64 try:
65 files = int(files)
66 except:
67 files = None
68
69 magnetlink = result.xpath('.//div[@class="torrent_magnet"]//a')[0].attrib['href']
70
71
72 results.append(
73 {
74 'url': href,
75 'title': title,
76 'content': content,
77 'filesize': filesize,
78 'files': files,
79 'magnetlink': magnetlink,
80 'template': 'torrent.html',
81 }
82 )
83
84
85 return results