I am following the API tutorial on the Clarifai site specifically working with the search tutorial(https://developer-preview.clarifai.com/quick-start/)
from clarifai.rest import ClarifaiApp
app = ClarifaiApp("{clientId}", "{clientSecret}")
# before search, first need to upload a few images
app.inputs.create_image_from_url("https://samples.clarifai.com/puppy.jpeg")
# search by predicted concept
result = app.inputs.search_by_predicted_concepts(concept='dog')
print(result)
When I look at what the API returns it is a list that contains an image object as follows:
[<clarifai.rest.client.Image object at 0x103215f50>]
How can I display this Image object to look at what it contains and save it to a file such as .png?