Metadata-Version: 2.1
Name: googleimagedownloader
Version: 4.0.0
Summary: 
        Download any Image from Google Search with 2 lines of Python code          
Home-page: https://github.com/soumilshah1995/GoogleImageDownloader
Author: Soumil Nitin Shah
Author-email: soushah@my.bridgeport.edu
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests-futures
Requires-Dist: pandas
Requires-Dist: bs4
Requires-Dist: requests


[![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)]


# googleimagedownloader 

#### what is Google Image Downloader  ?
* Are you into Machine Learning ? and want Image Dataset?
* Download any Image from Google Search with 2 lines of Python code
* This Library is based on Web Scrapping Techniques. To Download Image just Supply the Query String and call the Method Download.
* Please look at the sample code provided below
* Limitation: Maximum image Download is 100 Images



## Dependencies 

```bash
pip install requests-futures
pip install pandas
pip install bs4
pip install requests
```


## Installation

```bash
pip install googleimagedownloader
```
## Usage


```python
from googleimagedownloader.googleimagedownloader import GoogleImageDownloader

image = GoogleImageDownloader(Query="Dog", numberImage=50)
image.saveCsv()         # saves all the URL in CSV File 
image.saveJson()        # saves all the URL in JSON Format
image.downloadImages()  # Download all Images and stores inside the folder called Images

```
<img width="498" alt="Screen Shot 2019-11-17 at 1 47 17 PM" src="https://user-images.githubusercontent.com/39345855/69012242-b0165800-0941-11ea-9ed4-11730c3160c8.png">

-------------
<img width="414" alt="Screen Shot 2019-11-17 at 1 53 30 PM" src="https://user-images.githubusercontent.com/39345855/69012250-bd334700-0941-11ea-930f-653da21b16f4.png">


## Authors

## Soumil Nitin Shah 
Bachelor in Electronic Engineering |
Masters in Electrical Engineering | 
Master in Computer Engineering |

* Website : https://soumilshah.herokuapp.com
* Github: https://github.com/soumilshah1995
* Linkedin: https://www.linkedin.com/in/shah-soumil/
* Blog: https://soumilshah1995.blogspot.com/
* Youtube : https://www.youtube.com/channel/UC_eOodxvwS_H7x2uLQa-svw?view_as=subscriber
* Facebook Page : https://www.facebook.com/soumilshah1995/
* Email : shahsoumil519@gmail.com



## License

This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details




