Big Query Operations
The gcloud.BQ attribute of the EasyEnvironment
instance allows to load tables into Python, create Big Query tables or add rows to them. It also allows to run big query queries.
EasyEnvironment.gcloud.BQ
.load
: Load an entire Big Query table into Python.EasyEnvironment.gcloud.BQ.write
: Write an entire Python dataframe into Big Query.EasyEnvironment.gcloud.BQ.append:
Append an existing Big Query table.EasyEnvironment.gcloud.BQ.query:
Execute Big Query query.
Last updated