Created
June 28, 2023 07:18
-
-
Save asvechkar/64036093bd13ba3dc717bf5403d87b40 to your computer and use it in GitHub Desktop.
Google поиск через Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip install googlesearch-python | |
from googlesearch import search | |
# Define the query you want to search | |
query = "Python programming" | |
# Specify the number of search results you want to retrieve | |
num_results = 5 | |
# Perform the search and retrieve the results | |
search_results = search(query, num_results=num_results, lang='en') | |
# Print the search results | |
for result in search_results: | |
print(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment