Skip to main content

A small package for scrapping images from google

Project description

easy_scrap

A simple Python package for scrapping images from Google Image Search

Installation

The package is available for pip installation

pip install easy_scrap

Usage

The main class is GoogleImageScrapper, which takes query as argument, searches for image links and downloads them to a separate folder. Folders for saving the images will be created on the runtime.

A basic example of usage

from easy_scrap import GoogleImageScrapper

query = "fruits"
save_folder_name = "fruit"
n_images = 100

# parse Google Image Search html page for image links
scrapper = GoogleImageScrapper(query=query,
                               save_folder_name=save_folder_name,
                               n_images=n_images)

# download and save images
scrapper.download_all_images()

TODOs

  • Add option to parse queries from the shell
  • Add other search systems
  • Try asynchronous download for speed boost
  • Handle issue when first 3 downloaded images are some Google icons

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

easy_scrap-0.1.0.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

easy_scrap-0.1.0-py3-none-any.whl (4.9 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