Search for image using Google Custom Search API and resize & crop the image afterwords
Project description
Google Images Search
Installation
Before you continue you need to setup your Google developers account and project:
https://console.developers.google.com (Among all of the Google APIs enable "Custom Search API" for your project)
https://cse.google.com/cse/all (In the web form where you create/edit your custom search engine enable "Image search" option and and for "Sites to search" option select "Search the entire web but emphasize included sites")
After setting up you Google developers account and project you should have your developers API key and project CX
Install package from pypi.org:
> pip install Google-Images-Search
CLI usage
# without environment variables:
> gimages -k __your_dev_api_key__ -c __your_project_cx__ search -q puppies
# with environment variables:
> export GCS_DEVELOPER_KEY=__your_dev_api_key__
> export GCS_CX=__your_project_cx__
>
> gimages search -q puppies
# search only (no download and resize):
> gimages search -q puppies
# search and download only (no resize):
> gimages search -q puppies -d /path/on/your/drive/where/images/should/be/downloaded
# search, download and resize:
> gimages search -q puppies -d /path/ -w 500 -h 500
Programmatic usage
from google_images_search import GoogleImagesSearch
# if you don't enter api key and cx, the package will try to search
# them from environment variables GCS_DEVELOPER_KEY and GCS_CX
gis = GoogleImagesSearch('your_dev_api_key', 'your_project_cx')
# example: GoogleImagesSearch('ABcDeFGhiJKLmnopqweRty5asdfghGfdSaS4abC', '012345678987654321012:abcde_fghij')
#define search params:
_search_params = {
'q': '...',
'num': 1-50,
'safe': 'high|medium|off',
'fileType': 'jpg|gif|png',
'imgType': 'clipart|face|lineart|news|photo',
'imgSize': 'huge|icon|large|medium|small|xlarge|xxlarge',
'imgDominantColor': 'black|blue|brown|gray|green|pink|purple|teal|white|yellow'
}
# this will only search for images:
gis.search(search_params=_search_params)
# this will search and download:
gis.search(search_params=_search_params, path_to_dir='/path/')
# this will search, download and resize:
gis.search(search_params=_search_params, path_to_dir='/path/', width=500, height=500)
# search first, then download and resize afterwards
gis.search(search_params=_search_params)
for image in gis.results():
image.download('/path/')
image.resize(500, 500)
Inserting custom progressbar function
from google_images_search import GoogleImagesSearch
def my_progressbar(url, progress):
print(url + ' ' + progress + '%')
gis = GoogleImagesSearch(
'your_dev_api_key', 'your_project_cx', progressbar_fn=my_progressbar
)
...
Saving to a BytesIO object
from google_images_search import GoogleImagesSearch
from io import BytesIO
from PIL import Image
# in this case we're using PIL to keep the BytesIO as an image object
# this way we don't have to wait for disk save / write times
# the image is simply kept in memory
# this example should display 3 pictures of puppies!
gis = GoogleImagesSearch('your_dev_api_key', 'your_project_cx')
my_bytes_io = BytesIO()
gis.search({'q': 'puppies', 'num': 3})
for image in gis.results():
# here we tell the BytesIO object to go back to address 0
my_bytes_io.seek(0)
# take raw image data
raw_image_data = image.get_raw_data()
# this function writes the raw image data to the object
image.copy_to(my_bytes_io, raw_image_data)
# or without the raw data which will be automatically taken
# inside the copy_to() method
image.copy_to(my_bytes_io)
# we go back to address 0 again so PIL can read it from start to finish
my_bytes_io.seek(0)
# create a temporary image object
temp_img = Image.open(my_bytes_io)
# show it in the default system photo viewer
temp_img.show()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Google Images Search-1.0.0.tar.gz.
File metadata
- Download URL: Google Images Search-1.0.0.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f92c3854cf364391d358bcbf8c3211265af62e26486893d81d1cb793fc52914
|
|
| MD5 |
fc30106d80248e55e04151c831b3ea79
|
|
| BLAKE2b-256 |
d9fdd2347d2d68afa3a8c9711bfd618129afacbd73fc1d2a49b043f254610d50
|
File details
Details for the file Google_Images_Search-1.0.0-py2.py3-none-any.whl.
File metadata
- Download URL: Google_Images_Search-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64fb0a3a6150c778b2e1c9feb70acf41641cdc34ee315c40461a3edf445e5373
|
|
| MD5 |
801ae6958189a81b08cf586526e3598c
|
|
| BLAKE2b-256 |
453bc660f4ddbe5ad2533c89ec2611b80e36ee46977ca28a17e1624108611c22
|