Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
infra
spot
Commits
2456b8f5
Commit
2456b8f5
authored
Jan 05, 2019
by
Venca24
Browse files
[mod] google videos
parent
1ea56576
Changes
1
Show whitespace changes
Inline
Side-by-side
searx/engines/google_videos.py
View file @
2456b8f5
...
...
@@ -13,7 +13,6 @@
from
datetime
import
date
,
timedelta
from
json
import
loads
from
lxml
import
html
from
searx.engines
import
logger
from
searx.engines.xpath
import
extract_text
from
searx.url_utils
import
urlencode
import
re
...
...
@@ -79,7 +78,6 @@ def response(resp):
id
=
result
.
xpath
(
'.//div[@class="s"]//img/@id'
)[
0
]
thumbnails_data
=
re
.
findall
(
's=
\'
(.*?)(?:
\\\\
[a-z,1-9,
\\\\
]+
\'
|
\'
)\;var ii=\[(?:|[
\'
vidthumb\d+
\'
,]+)
\'
'
+
id
,
script
)
logger
.
debug
(
'google video engine: '
+
id
+
' matched '
+
str
(
len
(
thumbnails_data
))
+
' times (thumbnail)'
)
tmp
=
[]
if
len
(
thumbnails_data
)
!=
0
:
tmp
=
re
.
findall
(
'(data:image/jpeg;base64,[a-z,A-Z,0-9,/,\+]+)'
,
thumbnails_data
[
0
])
...
...
Write
Preview
Supports
Markdown
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