Google BigQuery
BigQuery is a serverless, highly scalable, and cost-effective multi-cloud data warehouse. It’s used for storing and analyzing large datasets.
pip install google-cloud-bigqueryfrom google.cloud import bigquery
client = bigquery.Client()
dataset_id = 'your_dataset_id'
Last updated