tylertreat/BigQuery-Python

get statistics of the job

MarlonAbeykoon opened this issue · 1 comments

How can I get the properties like totalBytesBilled, endTime etc that comes under statistics? I use the query method in client.py

You can get job info by job_id.

request = client.bigquery.jobs().get(projectId=project_id, jobId=job_id)
job_resource = request.execute()