Преглед изворни кода

[fix] do not crash if publication date is missing in pubmed engine

Adam Tauber пре 7 година
родитељ
комит
1088c2a75d
1 измењених фајлова са 8 додато и 5 уклоњено
  1. 8
    5
      searx/engines/pubmed.py

+ 8
- 5
searx/engines/pubmed.py Прегледај датотеку

@@ -84,15 +84,18 @@ def response(resp):
84 84
                     content = content[0:300] + "..."
85 85
         # TODO: center snippet on query term
86 86
 
87
-        publishedDate = datetime.strptime(entry.xpath('.//DateCreated/Year')[0].text
88
-                                          + '-' + entry.xpath('.//DateCreated/Month')[0].text
89
-                                          + '-' + entry.xpath('.//DateCreated/Day')[0].text, '%Y-%m-%d')
90
-
91 87
         res_dict = {'url': url,
92 88
                     'title': title,
93
-                    'publishedDate': publishedDate,
94 89
                     'content': content}
95 90
 
91
+        try:
92
+            publishedDate = datetime.strptime(entry.xpath('.//DateCreated/Year')[0].text
93
+                                              + '-' + entry.xpath('.//DateCreated/Month')[0].text
94
+                                              + '-' + entry.xpath('.//DateCreated/Day')[0].text, '%Y-%m-%d')
95
+            res_dict['publishedDate'] = publishedDate
96
+        except:
97
+            pass
98
+
96 99
         results.append(res_dict)
97 100
 
98 101
         return results