langchain/docs/extras/integrations/providers/google_bigquery.mdx

21 lines
547 B
Plaintext
Raw Normal View History

# 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
2023-07-25 04:20:32 +00:00
See a [usage example](/docs/integrations/document_loaders/google_bigquery).
```python
from langchain.document_loaders import BigQueryLoader
```