Search for jobs with Cloud Talent Solution API in Python

91 Views Asked by At

I cannot find any useful documentation whatsoever on how to use the Google Cloud Talent Solution API in Python to perform even a basic query. Right now I am trying:

from google.cloud import talent

credential_path = "creds_path/creds.json"
os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = credential_path

client = talent.JobServiceClient()
client.job_query(query="python")

This gives the result:

TypeError: search_jobs() got an unexpected keyword argument 'query'

Removing query and trying other variables doesn't work. How do I use this API???

0

There are 0 best solutions below