/googlesearch.py

Library for scraping google search results

Primary LanguagePythonThe UnlicenseUnlicense

googlesearch.py

Library for scraping google search results

Get Started

from gsearchlib import Search

result = Search("what is programming language")
print(result)

# Output

{
    'title': 'Programming language - Wikipedia',
    'url': 'https://en.wikipedia.org/wiki/Programming_language'
}

License