I want to check the last modified date of BigQuery's tables with Python. In order to do that, I'm using Google Cloud BigQuery client (https://github.com/GoogleCloudPlatform/google-cloud-python/tree/master/bigquery).
When executing the code bellow, the table attribute 'modified' is empty.
google-cloud-bigquery==0.24.0
Code used:
from google.cloud import bigquery
client = bigquery.Client()
dataset = client.dataset(my_dataset)
table = dataset.table(my_table)
print table.modified