mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-04 03:27:06 -05:00 
			
		
		
		
	Add torrent infos
This commit is contained in:
		
							parent
							
								
									4776abd1ac
								
							
						
					
					
						commit
						39a97825d9
					
				@ -1,6 +1,7 @@
 | 
				
			|||||||
from urllib import quote
 | 
					from urllib import quote
 | 
				
			||||||
from lxml import html
 | 
					from lxml import html
 | 
				
			||||||
from searx.engines.xpath import extract_text
 | 
					from searx.engines.xpath import extract_text
 | 
				
			||||||
 | 
					from searx.utils import get_torrent_size
 | 
				
			||||||
from urlparse import urljoin
 | 
					from urlparse import urljoin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
url = 'https://1337x.to/'
 | 
					url = 'https://1337x.to/'
 | 
				
			||||||
@ -23,9 +24,17 @@ def response(resp):
 | 
				
			|||||||
    for result in dom.xpath('//table[contains(@class, "table-list")]/tbody//tr'):
 | 
					    for result in dom.xpath('//table[contains(@class, "table-list")]/tbody//tr'):
 | 
				
			||||||
        href = urljoin(url, result.xpath('./td[contains(@class, "name")]/a[2]/@href')[0])
 | 
					        href = urljoin(url, result.xpath('./td[contains(@class, "name")]/a[2]/@href')[0])
 | 
				
			||||||
        title = extract_text(result.xpath('./td[contains(@class, "name")]/a[2]'))
 | 
					        title = extract_text(result.xpath('./td[contains(@class, "name")]/a[2]'))
 | 
				
			||||||
 | 
					        seed = extract_text(result.xpath('.//td[contains(@class, "seeds")]'))
 | 
				
			||||||
 | 
					        leech = extract_text(result.xpath('.//td[contains(@class, "leeches")]'))
 | 
				
			||||||
 | 
					        filesize_info = extract_text(result.xpath('.//td[contains(@class, "size")]/text()'))
 | 
				
			||||||
 | 
					        filesize, filesize_multiplier = filesize_info.split()
 | 
				
			||||||
 | 
					        filesize = get_torrent_size(filesize, filesize_multiplier)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        results.append({'url': href,
 | 
					        results.append({'url': href,
 | 
				
			||||||
                        'title': title,
 | 
					                        'title': title,
 | 
				
			||||||
                        'content': ''})
 | 
					                        'seed': seed,
 | 
				
			||||||
 | 
					                        'leech': leech,
 | 
				
			||||||
 | 
					                        'filesize': filesize,
 | 
				
			||||||
 | 
					                        'template': 'torrent.html'})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return results
 | 
					    return results
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user