I am a programming beginner and thing I\'m trying to learn how to use google API with Python.
I have:
There is 1 more simpler way of making it working by explicity mentioning Credentials and passing them to client as shown below.
import os
from google.oauth2 import service_account
credentials = service_account.Credentials.from_service_account_file("your-json-
file-path-with-filename.json")
client = language.LanguageServiceClient(credentials=credentials)