Skip to content

Instantly share code, notes, and snippets.

@asvechkar
Created June 28, 2023 07:18
Show Gist options
  • Save asvechkar/64036093bd13ba3dc717bf5403d87b40 to your computer and use it in GitHub Desktop.
Save asvechkar/64036093bd13ba3dc717bf5403d87b40 to your computer and use it in GitHub Desktop.
Google поиск через Python
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