We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dfccbe commit 5cbabd2Copy full SHA for 5cbabd2
samples/search/web_search_samples.py
@@ -5,6 +5,10 @@
5
# Add your Bing Search V7 subscription key to your environment variables.
6
SUBSCRIPTION_KEY = os.environ['BING_SEARCH_V7_SUBSCRIPTION_KEY']
7
8
+# Comment this logging mute out, if you want to include logging
9
+logger = logging.getLogger() # get the default logger
10
+logger.setLevel(50) # set the skip all log which is smaller than critical (50)
11
+
12
13
def result_types_lookup(subscription_key):
14
"""WebSearchResultTypesLookup.
0 commit comments