Skip to content

Instantly share code, notes, and snippets.

@Abhayparashar31
Created December 8, 2020 12:04
Show Gist options
  • Save Abhayparashar31/98615791c0bac74db376e2b916aa5012 to your computer and use it in GitHub Desktop.
Save Abhayparashar31/98615791c0bac74db376e2b916aa5012 to your computer and use it in GitHub Desktop.
from googlesearch import search
query = 'what is machine learning?'
for j in search(query, tld="co.in", num=1, stop=5, pause=2): ## it will return a total of 5 links
print(j)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment