Metadata-Version: 2.1
Name: simplegoogle_scraper_python
Version: 0.1.5
Summary: A small python package for scraping google search results.
Home-page: https://github.com/biswa-mohapatra/simplegoogle_scraper_python
Author: biswa-mohapatra
Author-email: jeetmohapatra98@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/biswa-mohapatra/simplegoogle_scraper_python/issues
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: testing
License-File: LICENSE

# A PYTHON PACKAGE FOR SCRAPING GOOGLE SEARCH RESULTS

This package is meant to scrape the google search results!

- PYPI link for this package - [simplegoogle-scraper-python](https://pypi.org/project/simplegoogle-scraper-python/0.1.4/)

## Getting Started

### Installation

### Note "installation steps"
First let's do an easy pip installation of the library by running the following command -
```bash
pip install simplegoogle-scraper-python
```

### Short example
```python
from simplegoogle_scraper_python import scrapeGooGle_results

search_query = "How are you?"
search_number = 70
scrapeGooGle_results.search(search_query,search_number)
```


| Args      | Type | Description     |
| :---:|:----:   |:---: |
| search_query      | string       | Your desired search query.   |
|  search_number  | integer        | Your desired number of results.      |
|  return  | list       | list of json outputs with title, link and snippet.      |
