Metadata-Version: 2.1
Name: gImageGrabber
Version: 0.0.4
Summary: Tool to download orignal resolution images from Google search
Home-page: https://mysnappy.weebly.com/
Author: Saksham Sharma
Author-email: codeck313@gmail.com
License: GNU General Public License version 3
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Utilities
Requires-Dist: urllib3 (==1.23)
Requires-Dist: beautifulsoup4 (==4.6.3)
Requires-Dist: selenium (==3.14.1)

======================
Google Image Grabber
======================

**Documentation Under Construction**

Towel Stuff provides tools to grab images from a google search by extracting the links of
the images and downloading full resolution images.
Below is a sample on how to use it ::

    #!/usr/bin/env python

    from gImageGrabber import imageScrapeBrowser as imgScrape

    search = 'Python Language'

    data = imgScrape.get_images(imgScrape.build_url(search))
    imgScrape.save_images(data, search, fType)


