| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | """ DigBT (Videos, Music, Files) @website     https://digbt.org @provide-api no @using-api   no @results     HTML (using search portal) @stable      no (HTML can change) @parse       url, title, content, magnetlink"""from urlparse import urljoinfrom lxml import htmlfrom searx.engines.xpath import extract_textfrom searx.utils import get_torrent_sizecategories = ['videos', 'music', 'files']paging = TrueURL = 'https://digbt.org'SEARCH_URL = URL + '/search/{query}-time-{pageno}'FILESIZE = 3FILESIZE_MULTIPLIER = 4def request(query, params):    params['url'] = SEARCH_URL.format(query=query, pageno=params['pageno'])    return paramsdef response(resp):    dom = html.fromstring(resp.content)    search_res = dom.xpath('.//td[@class="x-item"]')    if not search_res:        return list()    results = list()    for result in search_res:        url = urljoin(URL, result.xpath('.//a[@title]/@href')[0])        title = extract_text(result.xpath('.//a[@title]'))        content = extract_text(result.xpath('.//div[@class="files"]'))        files_data = extract_text(result.xpath('.//div[@class="tail"]')).split()        filesize = get_torrent_size(files_data[FILESIZE], files_data[FILESIZE_MULTIPLIER])        magnetlink = result.xpath('.//div[@class="tail"]//a[@class="title"]/@href')[0]        results.append({'url': url,                        'title': title,                        'content': content,                        'filesize': filesize,                        'magnetlink': magnetlink,                        'seed': 'N/A',                        'leech': 'N/A',                        'template': 'torrent.html'})    return results
 |