views:

63

answers:

1

I want to search for images using a Python script and pull them off the web. Is there an official API for this? What would be the best way to do this in case there's no API for it?

+3  A: 

Google has an official API for accessing search features, including images. They use JSON for communication, so it's easily accessible via Python. They are many Python wrappers around it like this one.

leoluk