以下是一个示例代码,展示如何在 Python 中使用 Google Cloud 的服务帐号来运行 BigQuery 作业:
from google.oauth2.service_account import Credentials from google.cloud import bigquery
credentials = Credentials.from_service_account_file('/path/to/your/service_account.json')
client = bigquery.Client(credentials=credentials, project=credentials.project_id)
query = client.query('SELECT * FROM your_project.your_dataset.your_table
LIMIT 10')
for row in query:
print(row)