|
@@ -12,7 +12,7 @@
|
12
|
12
|
from lxml import html
|
13
|
13
|
from searx.engines.xpath import extract_text
|
14
|
14
|
from searx.url_utils import urlencode
|
15
|
|
-from searx.utils import get_torrent_size
|
|
15
|
+from searx.utils import get_torrent_size, int_or_zero
|
16
|
16
|
|
17
|
17
|
# engine dependent config
|
18
|
18
|
categories = ['files', 'images', 'videos', 'music']
|
|
@@ -49,14 +49,14 @@ def response(resp):
|
49
|
49
|
for result in dom.xpath(xpath_results):
|
50
|
50
|
# defaults
|
51
|
51
|
filesize = 0
|
52
|
|
- seed = 0
|
53
|
|
- leech = 0
|
54
|
|
- downloads = 0
|
55
|
52
|
magnet_link = ""
|
56
|
53
|
torrent_link = ""
|
57
|
54
|
|
58
|
55
|
# category in which our torrent belongs
|
59
|
|
- category = result.xpath(xpath_category)[0].attrib.get('title')
|
|
56
|
+ try:
|
|
57
|
+ category = result.xpath(xpath_category)[0].attrib.get('title')
|
|
58
|
+ except:
|
|
59
|
+ pass
|
60
|
60
|
|
61
|
61
|
# torrent title
|
62
|
62
|
page_a = result.xpath(xpath_title)[0]
|
|
@@ -74,12 +74,14 @@ def response(resp):
|
74
|
74
|
# link to the torrent file
|
75
|
75
|
torrent_link = url
|
76
|
76
|
|
77
|
|
- # get seeders and leechers
|
78
|
|
- try:
|
79
|
|
- seed = int(result.xpath(xpath_seeds)[0])
|
80
|
|
- leech = int(result.xpath(xpath_leeches)[0])
|
81
|
|
- except:
|
82
|
|
- pass
|
|
77
|
+ # seed count
|
|
78
|
+ seed = int_or_zero(result.xpath(xpath_seeds))
|
|
79
|
+
|
|
80
|
+ # leech count
|
|
81
|
+ leech = int_or_zero(result.xpath(xpath_leeches))
|
|
82
|
+
|
|
83
|
+ # torrent downloads count
|
|
84
|
+ downloads = int_or_zero(result.xpath(xpath_downloads))
|
83
|
85
|
|
84
|
86
|
# let's try to calculate the torrent size
|
85
|
87
|
try:
|
|
@@ -89,12 +91,6 @@ def response(resp):
|
89
|
91
|
except:
|
90
|
92
|
pass
|
91
|
93
|
|
92
|
|
- # torrent downloads count
|
93
|
|
- try:
|
94
|
|
- downloads = result.xpath(xpath_downloads)[0]
|
95
|
|
- except:
|
96
|
|
- pass
|
97
|
|
-
|
98
|
94
|
# content string contains all information not included into template
|
99
|
95
|
content = 'Category: "{category}". Downloaded {downloads} times.'
|
100
|
96
|
content = content.format(category=category, downloads=downloads)
|