mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
373ad49157
# docs: `ecosystem_integrations` update 3 Next cycle of updating the `ecosystem/integrations` * Added an integration `template` file * Added missed integration files * Fixed several document_loaders/notebooks ## Who can review? Is it possible to assign somebody to review PRs on docs? Thanks.
21 lines
562 B
Markdown
21 lines
562 B
Markdown
# Google BigQuery
|
|
|
|
>[Google BigQuery](https://cloud.google.com/bigquery) is a serverless and cost-effective enterprise data warehouse that works across clouds and scales with your data.
|
|
`BigQuery` is a part of the `Google Cloud Platform`.
|
|
|
|
## Installation and Setup
|
|
|
|
First, you need to install `google-cloud-bigquery` python package.
|
|
|
|
```bash
|
|
pip install google-cloud-bigquery
|
|
```
|
|
|
|
## Document Loader
|
|
|
|
See a [usage example](../modules/indexes/document_loaders/examples/google_bigquery.ipynb).
|
|
|
|
```python
|
|
from langchain.document_loaders import BigQueryLoader
|
|
```
|