May 2020
Intermediate to advanced
404 pages
10h 52m
English
Let's create a new Python script (or Jupyter notebook). In order to use the Cloud Vision API, we first need to import the Cloud Vision Client library.
from google.cloud import vision
client = vision.ImageAnnotatorClient()
with open("test.jpg", 'rb') as image_file: content = image_file.read()
Read now
Unlock full access