mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 17:09:31 +00:00
[mod] google videos
This commit is contained in:
parent
1ea56576dc
commit
2456b8f571
1 changed files with 0 additions and 2 deletions
|
@ -13,7 +13,6 @@
|
||||||
from datetime import date, timedelta
|
from datetime import date, timedelta
|
||||||
from json import loads
|
from json import loads
|
||||||
from lxml import html
|
from lxml import html
|
||||||
from searx.engines import logger
|
|
||||||
from searx.engines.xpath import extract_text
|
from searx.engines.xpath import extract_text
|
||||||
from searx.url_utils import urlencode
|
from searx.url_utils import urlencode
|
||||||
import re
|
import re
|
||||||
|
@ -79,7 +78,6 @@ def response(resp):
|
||||||
id = result.xpath('.//div[@class="s"]//img/@id')[0]
|
id = result.xpath('.//div[@class="s"]//img/@id')[0]
|
||||||
thumbnails_data = re.findall('s=\'(.*?)(?:\\\\[a-z,1-9,\\\\]+\'|\')\;var ii=\[(?:|[\'vidthumb\d+\',]+)\'' + id,
|
thumbnails_data = re.findall('s=\'(.*?)(?:\\\\[a-z,1-9,\\\\]+\'|\')\;var ii=\[(?:|[\'vidthumb\d+\',]+)\'' + id,
|
||||||
script)
|
script)
|
||||||
logger.debug('google video engine: ' + id + ' matched ' + str(len(thumbnails_data)) + ' times (thumbnail)')
|
|
||||||
tmp = []
|
tmp = []
|
||||||
if len(thumbnails_data) != 0:
|
if len(thumbnails_data) != 0:
|
||||||
tmp = re.findall('(data:image/jpeg;base64,[a-z,A-Z,0-9,/,\+]+)', thumbnails_data[0])
|
tmp = re.findall('(data:image/jpeg;base64,[a-z,A-Z,0-9,/,\+]+)', thumbnails_data[0])
|
||||||
|
|
Loading…
Reference in a new issue