Skip to main content

This is a simple package to scrape google search results

Project description

googleScrapy

  • response structure:
{
    'status_code' : status_code, #Eg. 200, 429, 500
    'links' : [link1, link2, link3] #Eg. https://example.com
}
  • Usage:
from googleScrapy import Google

response = Google().search('search query goes here')

if response.status_code == 200:
    print('fetched succesfully')
    for link in response.links:
        print(link)
else:
    print(f'Error, status code: {response.status_code}')
  • Free Software: MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

googleScrapy-0.0.1.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

googleScrapy-0.0.1-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page