Advertisement
oort77

Google search

Jul 12th, 2022
2,043
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. # Search on Google
  2. # pip install google-search
  3. from googlesearch.googlesearch import GoogleSearch
  4. def Get_Google_Search(query):
  5.     Google = GoogleSearch()
  6.     r = Google.search(query, num_results=10)
  7.     for data in r.results:
  8.         print("Title: " + data.title)
  9.         print("Content: " + data.getText())
  10. Get_Google_Search("python programming")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement