Skip to content

Instantly share code, notes, and snippets.

@giantmolecules
Created February 3, 2020 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giantmolecules/29989b15c400babb96468501cda64772 to your computer and use it in GitHub Desktop.
Save giantmolecules/29989b15c400babb96468501cda64772 to your computer and use it in GitHub Desktop.
import pprint
import json
from googleapiclient.discovery import build
service = build("customsearch", "v1",
developerKey="DEVELOPER_KEY")
res = service.cse().list(
q='urinal',
searchType='image',
cx='017576662512468239146:omuauf_lfve',
).execute()
print(res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment