Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
searx-engine
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
searx-engine
Commits
44ce51f0
Commit
44ce51f0
authored
Dec 14, 2018
by
Michael Pfitzner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
restore startpage search results
parent
442772a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
startpage.py
searx/engines/startpage.py
+4
-3
No files found.
searx/engines/startpage.py
View file @
44ce51f0
...
...
@@ -32,8 +32,9 @@ search_url = base_url + 'do/search'
# specific xpath variables
# ads xpath //div[@id="results"]/div[@id="sponsored"]//div[@class="result"]
# not ads: div[@class="result"] are the direct childs of div[@id="results"]
results_xpath
=
'//
div[@class="result"
]'
results_xpath
=
'//
li[contains(@class, "search-result") and contains(@class, "search-item")
]'
link_xpath
=
'.//h3/a'
content_xpath
=
'./p[@class="search-item__body"]'
# do search-request
...
...
@@ -79,8 +80,8 @@ def response(resp):
title
=
extract_text
(
link
)
if
result
.
xpath
(
'./p[@class="desc clk"]'
):
content
=
extract_text
(
result
.
xpath
(
'./p[@class="desc clk"]'
))
if
result
.
xpath
(
content_xpath
):
content
=
extract_text
(
result
.
xpath
(
content_xpath
))
else
:
content
=
''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment