# Python code block to obtain the download URL for MySQL Shell
import requests
from bs4 import BeautifulSoup
search_term = "mysql shell download"
# Performing the search using the search term
search_url = f"https://www.bing.com/search?q={search_term}"
# Sending a GET request to the search URL and obtaining the HTML content
response = requests.get(search_url).text
# Parsing the HTML content using BeautifulSoup
soup = BeautifulSoup(response, "html.parser")
# Extracting the download URL of MySQL Shell (assumes the first result is the correct one)
download_url = soup.select_one('cite').get_text()
print(download_url)