How can I print the contents of my response from detect_with_stream, in this case the emotion attribute?
detected_faces_details = face_client.face.detect_with_stream(
open((os.path.join("img/test-faces.jpg")),'r+b'),
return_face_attributes=['emotion'])
detected_faces_details is only printing my two faces in test-faces.jpg in this manner:
[<azure.cognitiveservices.vision.face.models._models_py3.DetectedFace at 0x1e20ec06648>,
<azure.cognitiveservices.vision.face.models._models_py3.DetectedFace at 0x1e20ec063c8>]
How can I print the contents of my response from
detect_with_stream, in this case theemotionattribute?detected_faces_detailsis only printing my two faces intest-faces.jpgin this manner: