Skip to content

veiset/pyImgSearch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

pyImgSearch

A python Interface for the Google Image Search API

Example usage

from googleapi import GoogleImageSearch
from downloader import download

googleImage = GoogleImageSearch()
images = googleImage.search("super mario snes")

for image in images: 
    download(image.url, 'img/' + image.imageId)

The code-snippet will search for images matching 'super mario snes' using the Google Image Search API and download the images to a local folder 'img'.

About

A python Interface for the Google Image Search API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages