Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

FieldDescription
verticalSet to News.
query

The query to search on Bing. The query can contain any valid query text that the Bing Engine supports.

market

The news market in which to find news. Example markets:

Market IDLanguageCountry/Region
de-DEGermanGermany
de-CHGermanSwitzerland
en-UKEnglishUnited Kingdom
en-USEnglishUnited States

For the full list of available markets refer to the Bing API Schema Guide.

news_category

Limit search results to a category. This is optional.

Available categories:

  • default
  • rt_Business
  • rt_Entertainment
  • rt_Health
  • rt_Politics
  • rt_Sports
  • rt_US
  • rt_World
  • rt_ScienceAndTechnology
Content Augmentation"Fetching Link Content" is enabled by default.processing

default:

 

Code Block
languagebash
processing_config = {
    'content-augmentation': {
        'enabled': True,
        'fetch_link_content': True,
    },
}

A maximum number of 15 results can be retrieved via the Bing API. 

...

FieldDescription
verticalSet to Web.
query

The query to search on Bing. The query can contain any valid query text that the Bing Engine supports.

market

The web market in which to find results. Optional.

Content Augmentation"Fetching Link Content" is disabled by default. processing

default:

Code Block
languagebash
processing_config = {
    'content-augmentation': {
        'enabled': True,
        'fetch_link_content': False,
    },
}

Configuration Example

This is an example configuration for creating a news tracking configuration.

...