-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbingsearch.py
31 lines (26 loc) · 1.05 KB
/
bingsearch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import requests
def call_search_api(query, bing_endpoint, bing_api_key, count = 10):
#Perform a web search using the Bing Web Search API.
# Set the parameters for the API request.
params = {
'q': query,
'count': count,
}
# Set the headers for the API request, including the subscription key.
headers = {
'Ocp-Apim-Subscription-Key': bing_api_key,
}
# Make the API request.
response = requests.get(bing_endpoint, params=params, headers=headers)
# Check if the request was successful (HTTP status code 200).
if response.status_code == 200:
search_results = response.json()
# Extract and structure the search results.
results_list = []
for result in search_results['webPages']['value']:
result_tuple = (result['name'], result['snippet'], result['url'])
results_list.append(result_tuple)
return tuple(results_list)
else:
print(f"Error: {response.status_code} - {response.text}")
return None