# Retrieve images from MorgueFile.

from nodebox_web import web
from nodebox_web.web import morguefile

q = "cloud"
img = morguefile.search(q)[0]

print img

# A morgueFile image in the list has 
# a number of methods and properties.
# The download() method caches the image locally 
# and returns the path to the file.
img = img.download()

