def thumbnail(self): return str(PhotoData.get(self.id).thumbnail)
def img(self): return str(PhotoData.get(self.id).img)
def title(self): return PhotoData.get(self.id).title
def thumbnail(self): """Return the thumbnail data""" return str(PhotoData.get(self.id).thumbnail)
def img(self): """Return the image data""" return str(PhotoData.get(self.id).img)
def title(self): """Return the title of the photo""" return PhotoData.get(self.id).title