Python wrapper for interacting Google BigQuery.
Project description
GBQ
Python wrapper for interacting Google BigQuery.
This package provides an interface by wrapping Google's low level library. It exposes options to provide input as json objects which can be used for various CI/CD tools.
Usage
Basic Usage
from gbq import BigQuery
# BigQuery project id as listed in the Google Developers Console.
project_id = 'project_id'
# BigQuery dataset id as listed in the Google Developers Console.
dataset_id = 'dataset_id'
# BigQuery table/view id as listed in the Google Developers Console.
structure_id = 'structure_id'
# BigQuery structure definition as defined in the Google Developers Console.
json_schema = {"type": "table", "schema": [{"id": "integer"}]}
# Service account email address as listed in the Google Developers Console.
svc_account = '{"type": "service_account", "project_id": "project_id"}'
bq = BigQuery(svc_account=svc_account, project=project_id)
bq.create_or_update_structure(project_id, dataset_id, structure_id, json_schema)
Documentation
Check out the project documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gbq-1.0.5.tar.gz
(8.7 kB
view hashes)
Built Distribution
gbq-1.0.5-py3-none-any.whl
(9.4 kB
view hashes)