goop

Scrap Google results without any rate limit.


Keywords
goop, google, googler, scraper
License
GPL-3.0
Install
pip install goop==0.1

Documentation


goop
goop

Google Search Scraper

Contents

Introduction

goop can perform google searches without being blocked by the CAPTCHA.

How it works?

Facebook provides a debugger tool for its scraper. Interestingly, Google doesn't limit the requests made by this debugger and hence it can be used to scrap the google search results without being blocked by the CAPTCHA.
Since facebook is involved, a facebook session Cookie must be supplied to the library with each request.

Usage

Installation

pip install goop

Example

import goop

page_1 = goop.search('red shoes', '<your facebook cookie>')
page_2 = goop.search('red_shoes', '<your facebook cookie>', page='1')
include_omitted_results = goop.search('red_shoes', '<your facebook cookie>', page='8', full=True)

Legal & Disclaimer

Scraping google search results is illegal. This library is merely a proof of concept of the bypass. The author isn't responsible for the actions of the end users.