def get_faces()

in Bot2/ImageUpdate/hello_world/twitterUpdateImage.py [0:0]


def get_faces(image):
    resp = reko.detect_faces(Image={'Bytes': image})
    if 'FaceDetails' in resp:
        return resp['FaceDetails']
    else:
        return []