! python -V
! ipython -V
from IPython.display import Image
import requests, json
catURL = 'http://aws.random.cat/meow'
imageURL = json.loads(requests.get(catURL).content)["file"]
img = Image(requests.get(imageURL).content)
display(img)