We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Simple reproducible case:
import io import os from google.cloud import vision vision_client = vision.Client() file_name = os.path.join( os.path.dirname(__file__), 'resources/wakeupcat.jpg') with io.open(file_name, 'rb') as image_file: image = vision_client.image( content=image_file.read()) labels = image.detect_labels() print('Labels:') for label in labels: print(label.description)
works fine on Python 2, fails on Python 3.
Simple reproducible case:
works fine on Python 2, fails on Python 3.