완료된 쿼리 작업에서 BigQuery DataFrame 만들기

BigQuery DataFrames API를 사용하여 BigQuery 콘솔 또는 bq CLI와 같은 다른 곳에서 시작되었을 수 있는 쿼리 작업의 결과를 탐색합니다.

코드 샘플

Python

이 샘플을 사용해 보기 전에 BigQuery 빠른 시작: 클라이언트 라이브러리 사용Python 설정 안내를 따르세요. 자세한 내용은 BigQuery Python API 참고 문서를 확인하세요.

BigQuery에 인증하려면 애플리케이션 기본 사용자 인증 정보를 설정합니다. 자세한 내용은 클라이언트 라이브러리의 인증 설정을 참조하세요.

from google.cloud import bigquery

import bigframes.pandas as bpd

# Project ID inserted based on the query results selected to explore
project = your_project_id
# Location inserted based on the query results selected to explore
location = "us"
client = bigquery.Client(project=project, location=location)

# Job ID inserted based on the query results selcted to explore
job_id = JOB_ID
job = client.get_job(job_id)
destination = str(job.destination)

# Load data from a BigQuery table using BigFrames DataFrames:
bq_df = bpd.read_gbq_table(destination)

다음 단계

다른 Google Cloud 제품의 코드 샘플을 검색하고 필터링하려면 Google Cloud 샘플 브라우저를 참조하세요.