[fix] Revision of the Bing engines

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser 2023-09-27 18:24:33 +02:00 committed by Markus Heiser
parent 079636c079
commit 32a4ea350e
5 changed files with 1721 additions and 513 deletions

File diff suppressed because it is too large Load Diff

View File

@ -8,19 +8,18 @@ implementations are shared by other engines:
- :ref:`bing videos engine` - :ref:`bing videos engine`
On the `preference page`_ Bing offers a lot of languages an regions (see section On the `preference page`_ Bing offers a lot of languages an regions (see section
'Search results languages' and 'Country/region'). However, the abundant choice LANGUAGE and COUNTRY/REGION). The Language is the language of the UI, we need
does not correspond to reality, where Bing has a full-text indexer only for a in SearXNG to get the translations of data such as *"published last week"*.
limited number of languages. By example: you can select a language like Māori
but you never get a result in this language.
What comes a bit closer to the truth are the `search-APIs`_ but they don`t seem There is a description of the offical search-APIs_, unfortunately this is not
to be completely correct either (if you take a closer look you will find some the API we can use or that bing itself would use. You can look up some things
inaccuracies there too): in the API to get a better picture of bing, but the value specifications like
the market codes are usually outdated or at least no longer used by bing itself.
- :py:obj:`searx.engines.bing.bing_traits_url` The market codes have been harmonized and are identical for web, video and
- :py:obj:`searx.engines.bing_videos.bing_traits_url` images. The news area has also been harmonized with the other categories. Only
- :py:obj:`searx.engines.bing_images.bing_traits_url` political adjustments still seem to be made -- for example, there is no news
- :py:obj:`searx.engines.bing_news.bing_traits_url` category for the Chinese market.
.. _preference page: https://www.bing.com/account/general .. _preference page: https://www.bing.com/account/general
.. _search-APIs: https://learn.microsoft.com/en-us/bing/search-apis/ .. _search-APIs: https://learn.microsoft.com/en-us/bing/search-apis/
@ -44,7 +43,7 @@ from searx.enginelib.traits import EngineTraits
if TYPE_CHECKING: if TYPE_CHECKING:
import logging import logging
logger: logging.Logger logger = logging.getLogger()
traits: EngineTraits traits: EngineTraits
@ -61,35 +60,57 @@ about = {
categories = ['general', 'web'] categories = ['general', 'web']
paging = True paging = True
time_range_support = True time_range_support = True
safesearch = True
"""Bing results are always SFW. To get NSFW links from bing some age
verification by a cookie is needed / thats not possible in SearXNG.
"""
base_url = 'https://www.bing.com/search' base_url = 'https://www.bing.com/search'
"""Bing (Web) search URL""" """Bing (Web) search URL"""
bing_traits_url = 'https://learn.microsoft.com/en-us/bing/search-apis/bing-web-search/reference/market-codes'
"""Bing (Web) search API description"""
def _page_offset(pageno): def _page_offset(pageno):
return (int(pageno) - 1) * 10 + 1 return (int(pageno) - 1) * 10 + 1
def set_bing_cookies(params, engine_language, engine_region): def set_bing_cookies(params, engine_language, engine_region):
params['cookies']['_EDGE_CD'] = f'm={engine_region.lower()}&u={engine_language.lower()};' params['cookies']['_EDGE_CD'] = f'm={engine_region}&u={engine_language}'
params['cookies']['_EDGE_S'] = f'mkt={engine_region}&ui={engine_language}'
logger.debug("bing cookies: %s", params['cookies'])
def request(query, params): def request(query, params):
"""Assemble a Bing-Web request.""" """Assemble a Bing-Web request."""
engine_region = traits.get_region(params['searxng_locale'], 'en-us') engine_region = traits.get_region(params['searxng_locale'], traits.all_locale) # type: ignore
engine_language = traits.get_language(params['searxng_locale'], 'en-us') engine_language = traits.get_language(params['searxng_locale'], 'en') # type: ignore
set_bing_cookies(params, engine_language, engine_region) set_bing_cookies(params, engine_language, engine_region)
query_params = {'q': query, 'first': _page_offset(params.get('pageno', 1))} page = params.get('pageno', 1)
query_params = {
'q': query,
# if arg 'pq' is missed, somtimes on page 4 we get results from page 1,
# don't ask why it is only sometimes / its M$ and they have never been
# deterministic ;)
'pq': query,
}
# To get correct page, arg first and this arg FORM is needed, the value PERE
# is on page 2, on page 3 its PERE1 and on page 4 its PERE2 .. and so forth.
# The 'first' arg should never send on page 1.
if page > 1:
query_params['first'] = _page_offset(page) # see also arg FORM
if page == 2:
query_params['FORM'] = 'PERE'
elif page > 2:
query_params['FORM'] = 'PERE%s' % (page - 2)
params['url'] = f'{base_url}?{urlencode(query_params)}' params['url'] = f'{base_url}?{urlencode(query_params)}'
unix_day = int(time.time() / 86400) if params.get('time_range'):
time_ranges = {'day': '1', 'week': '2', 'month': '3', 'year': f'5_{unix_day-365}_{unix_day}'} unix_day = int(time.time() / 86400)
if params.get('time_range') in time_ranges: time_ranges = {'day': '1', 'week': '2', 'month': '3', 'year': f'5_{unix_day-365}_{unix_day}'}
params['url'] += f'&filters=ex1:"ez{time_ranges[params["time_range"]]}"' params['url'] += f'&filters=ex1:"ez{time_ranges[params["time_range"]]}"'
return params return params
@ -113,10 +134,11 @@ def response(resp):
url = link.attrib.get('href') url = link.attrib.get('href')
title = extract_text(link) title = extract_text(link)
content = eval_xpath(result, '(.//p)[1]') content = eval_xpath(result, './/p')
for p in content: for p in content:
# Make sure that the element is free of <a href> links # Make sure that the element is free of:
for e in p.xpath('.//a'): # <span class="algoSlug_icon" # data-priority="2">Web</span>
for e in p.xpath('.//span[@class="algoSlug_icon"]'):
e.getparent().remove(e) e.getparent().remove(e)
content = extract_text(content) content = extract_text(content)
@ -165,72 +187,76 @@ def response(resp):
def fetch_traits(engine_traits: EngineTraits): def fetch_traits(engine_traits: EngineTraits):
"""Fetch languages and regions from Bing-Web.""" """Fetch languages and regions from Bing-Web."""
# pylint: disable=import-outside-toplevel
xpath_market_codes = '//table[1]/tbody/tr/td[3]'
# xpath_country_codes = '//table[2]/tbody/tr/td[2]'
xpath_language_codes = '//table[3]/tbody/tr/td[2]'
_fetch_traits(engine_traits, bing_traits_url, xpath_language_codes, xpath_market_codes)
def _fetch_traits(engine_traits: EngineTraits, url: str, xpath_language_codes: str, xpath_market_codes: str):
# pylint: disable=too-many-locals,import-outside-toplevel
from searx.network import get # see https://github.com/searxng/searxng/issues/762 from searx.network import get # see https://github.com/searxng/searxng/issues/762
# insert alias to map from a language (zh) to a language + script (zh_Hans) resp = get("https://www.bing.com/account/general")
engine_traits.languages['zh'] = 'zh-hans'
resp = get(url)
if not resp.ok: # type: ignore if not resp.ok: # type: ignore
print("ERROR: response from peertube is not OK.") print("ERROR: response from bing is not OK.")
dom = html.fromstring(resp.text) # type: ignore dom = html.fromstring(resp.text) # type: ignore
map_lang = {'jp': 'ja'} # languages
for td in eval_xpath(dom, xpath_language_codes):
eng_lang = td.text
if eng_lang in ('en-gb', 'pt-br'): engine_traits.languages['zh'] = 'zh-hans'
# language 'en' is already in the list and a language 'en-gb' can't
# be handled in SearXNG, same with pt-br which is covered by pt-pt.
continue
babel_lang = map_lang.get(eng_lang, eng_lang).replace('-', '_') map_lang = {'prs': 'fa-AF', 'en': 'en-us'}
try: bing_ui_lang_map = {
sxng_tag = language_tag(babel.Locale.parse(babel_lang)) # HINT: this list probably needs to be supplemented
except babel.UnknownLocaleError: 'en': 'us', # en --> en-us
print("ERROR: language (%s) is unknown by babel" % (eng_lang)) 'da': 'dk', # da --> da-dk
continue
conflict = engine_traits.languages.get(sxng_tag)
if conflict:
if conflict != eng_lang:
print("CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, eng_lang))
continue
engine_traits.languages[sxng_tag] = eng_lang
map_region = {
'en-ID': 'id_ID',
'no-NO': 'nb_NO',
} }
for td in eval_xpath(dom, xpath_market_codes): for href in eval_xpath(dom, '//div[@id="language-section"]//li/a/@href'):
eng_region = td.text eng_lang = parse_qs(urlparse(href).query)['setlang'][0]
babel_region = map_region.get(eng_region, eng_region).replace('-', '_') babel_lang = map_lang.get(eng_lang, eng_lang)
if eng_region == 'en-WW':
engine_traits.all_locale = eng_region
continue
try: try:
sxng_tag = region_tag(babel.Locale.parse(babel_region)) sxng_tag = language_tag(babel.Locale.parse(babel_lang.replace('-', '_')))
except babel.UnknownLocaleError: except babel.UnknownLocaleError:
print("ERROR: region (%s) is unknown by babel" % (eng_region)) print("ERROR: language (%s) is unknown by babel" % (babel_lang))
continue continue
conflict = engine_traits.regions.get(sxng_tag) # Language (e.g. 'en' or 'de') from https://www.bing.com/account/general
# is converted by bing to 'en-us' or 'de-de'. But only if there is not
# already a '-' delemitter in the language. For instance 'pt-PT' -->
# 'pt-pt' and 'pt-br' --> 'pt-br'
bing_ui_lang = eng_lang.lower()
if '-' not in bing_ui_lang:
bing_ui_lang = bing_ui_lang + '-' + bing_ui_lang_map.get(bing_ui_lang, bing_ui_lang)
conflict = engine_traits.languages.get(sxng_tag)
if conflict: if conflict:
if conflict != eng_region: if conflict != bing_ui_lang:
print("CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, eng_region)) print(f"CONFLICT: babel {sxng_tag} --> {conflict}, {bing_ui_lang}")
continue continue
engine_traits.regions[sxng_tag] = eng_region engine_traits.languages[sxng_tag] = bing_ui_lang
# regions (aka "market codes")
engine_traits.regions['zh-CN'] = 'zh-cn'
map_market_codes = {
'zh-hk': 'en-hk', # not sure why, but at M$ this is the market code for Hongkong
}
for href in eval_xpath(dom, '//div[@id="region-section"]//li/a/@href'):
cc_tag = parse_qs(urlparse(href).query)['cc'][0]
if cc_tag == 'clear':
engine_traits.all_locale = cc_tag
continue
# add market codes from official languages of the country ..
for lang_tag in babel.languages.get_official_languages(cc_tag, de_facto=True):
if lang_tag not in engine_traits.languages.keys():
# print("ignore lang: %s <-- %s" % (cc_tag, lang_tag))
continue
lang_tag = lang_tag.split('_')[0] # zh_Hant --> zh
market_code = f"{lang_tag}-{cc_tag}" # zh-tw
market_code = map_market_codes.get(market_code, market_code)
sxng_tag = region_tag(babel.Locale.parse('%s_%s' % (lang_tag, cc_tag.upper())))
conflict = engine_traits.regions.get(sxng_tag)
if conflict:
if conflict != market_code:
print("CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, market_code))
continue
engine_traits.regions[sxng_tag] = market_code

View File

@ -12,15 +12,14 @@ from urllib.parse import urlencode
from lxml import html from lxml import html
from searx.enginelib.traits import EngineTraits from searx.enginelib.traits import EngineTraits
from searx.engines.bing import ( from searx.engines.bing import set_bing_cookies
set_bing_cookies, from searx.engines.bing import fetch_traits # pylint: disable=unused-import
_fetch_traits,
)
if TYPE_CHECKING: if TYPE_CHECKING:
import logging import logging
logger: logging.Logger logger = logging.getLogger()
traits: EngineTraits traits: EngineTraits
@ -43,38 +42,29 @@ time_range_support = True
base_url = 'https://www.bing.com/images/async' base_url = 'https://www.bing.com/images/async'
"""Bing (Images) search URL""" """Bing (Images) search URL"""
bing_traits_url = 'https://learn.microsoft.com/en-us/bing/search-apis/bing-image-search/reference/market-codes'
"""Bing (Images) search API description"""
time_map = { time_map = {
# fmt: off
'day': 60 * 24, 'day': 60 * 24,
'week': 60 * 24 * 7, 'week': 60 * 24 * 7,
'month': 60 * 24 * 31, 'month': 60 * 24 * 31,
'year': 60 * 24 * 365, 'year': 60 * 24 * 365,
# fmt: on
} }
def request(query, params): def request(query, params):
"""Assemble a Bing-Image request.""" """Assemble a Bing-Image request."""
engine_region = traits.get_region(params['searxng_locale'], 'en-us') engine_region = traits.get_region(params['searxng_locale'], traits.all_locale) # type: ignore
engine_language = traits.get_language(params['searxng_locale'], 'en-us') engine_language = traits.get_language(params['searxng_locale'], 'en') # type: ignore
set_bing_cookies(params, engine_language, engine_region) set_bing_cookies(params, engine_language, engine_region)
# build URL query # build URL query
# - example: https://www.bing.com/images/async?q=foo&first=155&count=35 # - example: https://www.bing.com/images/async?q=foo&async=content&first=1&count=35
query_params = { query_params = {
# fmt: off
'q': query, 'q': query,
'async' : 'content', 'async': '1',
# to simplify the page count lets use the default of 35 images per page # to simplify the page count lets use the default of 35 images per page
'first' : (int(params.get('pageno', 1)) - 1) * 35 + 1, 'first': (int(params.get('pageno', 1)) - 1) * 35 + 1,
'count' : 35, 'count': 35,
# fmt: on
} }
# time range # time range
@ -117,13 +107,3 @@ def response(resp):
} }
) )
return results return results
def fetch_traits(engine_traits: EngineTraits):
"""Fetch languages and regions from Bing-News."""
xpath_market_codes = '//table[1]/tbody/tr/td[3]'
# xpath_country_codes = '//table[2]/tbody/tr/td[2]'
xpath_language_codes = '//table[3]/tbody/tr/td[2]'
_fetch_traits(engine_traits, bing_traits_url, xpath_language_codes, xpath_market_codes)

View File

@ -1,6 +1,11 @@
# SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-License-Identifier: AGPL-3.0-or-later
# lint: pylint # lint: pylint
"""Bing-News: description see :py:obj:`searx.engines.bing`. """Bing-News: description see :py:obj:`searx.engines.bing`.
.. hint::
Bing News is *different* in some ways!
""" """
# pylint: disable=invalid-name # pylint: disable=invalid-name
@ -10,11 +15,9 @@ from urllib.parse import urlencode
from lxml import html from lxml import html
from searx.utils import eval_xpath, extract_text, eval_xpath_list, eval_xpath_getindex
from searx.enginelib.traits import EngineTraits from searx.enginelib.traits import EngineTraits
from searx.engines.bing import ( from searx.engines.bing import set_bing_cookies
set_bing_cookies,
_fetch_traits,
)
if TYPE_CHECKING: if TYPE_CHECKING:
import logging import logging
@ -37,57 +40,48 @@ about = {
# engine dependent config # engine dependent config
categories = ['news'] categories = ['news']
paging = True paging = True
"""If go through the pages and there are actually no new results for another
page, then bing returns the results from the last page again."""
time_range_support = True time_range_support = True
time_map = { time_map = {
'day': '4', 'day': 'interval="4"',
'week': '8', 'week': 'interval="7"',
'month': '9', 'month': 'interval="9"',
} }
"""A string '4' means *last hour*. We use *last hour* for ``day`` here since the """A string '4' means *last hour*. We use *last hour* for ``day`` here since the
difference of *last day* and *last week* in the result list is just marginally. difference of *last day* and *last week* in the result list is just marginally.
""" Bing does not have news range ``year`` / we use ``month`` instead."""
base_url = 'https://www.bing.com/news/infinitescrollajax' base_url = 'https://www.bing.com/news/infinitescrollajax'
"""Bing (News) search URL""" """Bing (News) search URL"""
bing_traits_url = 'https://learn.microsoft.com/en-us/bing/search-apis/bing-news-search/reference/market-codes'
"""Bing (News) search API description"""
mkt_alias = {
'zh': 'en-WW',
'zh-CN': 'en-WW',
}
"""Bing News has an official market code 'zh-CN' but we won't get a result with
this market code. For 'zh' and 'zh-CN' we better use the *Worldwide aggregate*
market code (en-WW).
"""
def request(query, params): def request(query, params):
"""Assemble a Bing-News request.""" """Assemble a Bing-News request."""
sxng_locale = params['searxng_locale'] engine_region = traits.get_region(params['searxng_locale'], traits.all_locale) # type: ignore
engine_region = traits.get_region(mkt_alias.get(sxng_locale, sxng_locale), traits.all_locale) engine_language = traits.get_language(params['searxng_locale'], 'en') # type: ignore
engine_language = traits.get_language(sxng_locale, 'en-us')
set_bing_cookies(params, engine_language, engine_region) set_bing_cookies(params, engine_language, engine_region)
# build URL query # build URL query
# #
# example: https://www.bing.com/news/infinitescrollajax?q=london&first=1 # example: https://www.bing.com/news/infinitescrollajax?q=london&first=1
page = int(params.get('pageno', 1)) - 1
query_params = { query_params = {
# fmt: off
'q': query, 'q': query,
'InfiniteScroll': 1, 'InfiniteScroll': 1,
# to simplify the page count lets use the default of 10 images per page # to simplify the page count lets use the default of 10 images per page
'first' : (int(params.get('pageno', 1)) - 1) * 10 + 1, 'first': page * 10 + 1,
# fmt: on 'SFX': page,
'form': 'PTFTNR',
'setlang': engine_region.split('-')[0],
'cc': engine_region.split('-')[-1],
} }
if params['time_range']: if params['time_range']:
# qft=interval:"7" query_params['qft'] = time_map.get(params['time_range'], 'interval="9"')
query_params['qft'] = 'qft=interval="%s"' % time_map.get(params['time_range'], '9')
params['url'] = base_url + '?' + urlencode(query_params) params['url'] = base_url + '?' + urlencode(query_params)
@ -103,18 +97,34 @@ def response(resp):
dom = html.fromstring(resp.text) dom = html.fromstring(resp.text)
for newsitem in dom.xpath('//div[contains(@class, "newsitem")]'): for newsitem in eval_xpath_list(dom, '//div[contains(@class, "newsitem")]'):
link = eval_xpath_getindex(newsitem, './/a[@class="title"]', 0, None)
if link is None:
continue
url = link.attrib.get('href')
title = extract_text(link)
content = extract_text(eval_xpath(newsitem, './/div[@class="snippet"]'))
metadata = []
source = eval_xpath_getindex(newsitem, './/div[contains(@class, "source")]', 0, None)
if source is not None:
for item in (
eval_xpath_getindex(source, './/span[@aria-label]/@aria-label', 0, None),
# eval_xpath_getindex(source, './/a', 0, None),
# eval_xpath_getindex(source, './div/span', 3, None),
link.attrib.get('data-author'),
):
if item is not None:
t = extract_text(item)
if t and t.strip():
metadata.append(t.strip())
metadata = ' | '.join(metadata)
url = newsitem.xpath('./@url')[0]
title = ' '.join(newsitem.xpath('.//div[@class="caption"]//a[@class="title"]/text()')).strip()
content = ' '.join(newsitem.xpath('.//div[@class="snippet"]/text()')).strip()
thumbnail = None thumbnail = None
author = newsitem.xpath('./@data-author')[0] imagelink = eval_xpath_getindex(newsitem, './/a[@class="imagelink"]//img', 0, None)
metadata = ' '.join(newsitem.xpath('.//div[@class="source"]/span/text()')).strip() if imagelink is not None:
thumbnail = 'https://www.bing.com/' + imagelink.attrib.get('src')
img_src = newsitem.xpath('.//a[@class="imagelink"]//img/@src')
if img_src:
thumbnail = 'https://www.bing.com/' + img_src[0]
results.append( results.append(
{ {
@ -122,7 +132,6 @@ def response(resp):
'title': title, 'title': title,
'content': content, 'content': content,
'img_src': thumbnail, 'img_src': thumbnail,
'author': author,
'metadata': metadata, 'metadata': metadata,
} }
) )
@ -131,17 +140,20 @@ def response(resp):
def fetch_traits(engine_traits: EngineTraits): def fetch_traits(engine_traits: EngineTraits):
"""Fetch languages and regions from Bing-News. """Fetch languages and regions from Bing-News."""
# pylint: disable=import-outside-toplevel
The :py:obj:`description <searx.engines.bing_news.bing_traits_url>` of the from searx.engines.bing import fetch_traits as _f
first table says *"query parameter when calling the Video Search API."*
.. that's why I use the 4. table "News Category API markets" for the
``xpath_market_codes``.
""" _f(engine_traits)
xpath_market_codes = '//table[4]/tbody/tr/td[3]' # fix market codes not known by bing news:
# xpath_country_codes = '//table[2]/tbody/tr/td[2]'
xpath_language_codes = '//table[3]/tbody/tr/td[2]'
_fetch_traits(engine_traits, bing_traits_url, xpath_language_codes, xpath_market_codes) # In bing the market code 'zh-cn' exists, but there is no 'news' category in
# bing for this market. Alternatively we use the the market code from Honk
# Kong. Even if this is not correct, it is better than having no hits at
# all, or sending false queries to bing that could raise the suspicion of a
# bot.
# HINT: 'en-hk' is the region code it does not indicate the language en!!
engine_traits.regions['zh-CN'] = 'en-hk'

View File

@ -11,10 +11,9 @@ from urllib.parse import urlencode
from lxml import html from lxml import html
from searx.enginelib.traits import EngineTraits from searx.enginelib.traits import EngineTraits
from searx.engines.bing import ( from searx.engines.bing import set_bing_cookies
set_bing_cookies, from searx.engines.bing import fetch_traits # pylint: disable=unused-import
_fetch_traits, from searx.engines.bing_images import time_map
)
if TYPE_CHECKING: if TYPE_CHECKING:
import logging import logging
@ -42,25 +41,12 @@ time_range_support = True
base_url = 'https://www.bing.com/videos/asyncv2' base_url = 'https://www.bing.com/videos/asyncv2'
"""Bing (Videos) async search URL.""" """Bing (Videos) async search URL."""
bing_traits_url = 'https://learn.microsoft.com/en-us/bing/search-apis/bing-video-search/reference/market-codes'
"""Bing (Video) search API description"""
time_map = {
# fmt: off
'day': 60 * 24,
'week': 60 * 24 * 7,
'month': 60 * 24 * 31,
'year': 60 * 24 * 365,
# fmt: on
}
def request(query, params): def request(query, params):
"""Assemble a Bing-Video request.""" """Assemble a Bing-Video request."""
engine_region = traits.get_region(params['searxng_locale'], 'en-us') engine_region = traits.get_region(params['searxng_locale'], traits.all_locale) # type: ignore
engine_language = traits.get_language(params['searxng_locale'], 'en-us') engine_language = traits.get_language(params['searxng_locale'], 'en') # type: ignore
set_bing_cookies(params, engine_language, engine_region) set_bing_cookies(params, engine_language, engine_region)
# build URL query # build URL query
@ -68,13 +54,11 @@ def request(query, params):
# example: https://www.bing.com/videos/asyncv2?q=foo&async=content&first=1&count=35 # example: https://www.bing.com/videos/asyncv2?q=foo&async=content&first=1&count=35
query_params = { query_params = {
# fmt: off
'q': query, 'q': query,
'async' : 'content', 'async': 'content',
# to simplify the page count lets use the default of 35 images per page # to simplify the page count lets use the default of 35 images per page
'first' : (int(params.get('pageno', 1)) - 1) * 35 + 1, 'first': (int(params.get('pageno', 1)) - 1) * 35 + 1,
'count' : 35, 'count': 35,
# fmt: on
} }
# time range # time range
@ -113,13 +97,3 @@ def response(resp):
) )
return results return results
def fetch_traits(engine_traits: EngineTraits):
"""Fetch languages and regions from Bing-Videos."""
xpath_market_codes = '//table[1]/tbody/tr/td[3]'
# xpath_country_codes = '//table[2]/tbody/tr/td[2]'
xpath_language_codes = '//table[3]/tbody/tr/td[2]'
_fetch_traits(engine_traits, bing_traits_url, xpath_language_codes, xpath_market_codes)