> ## Documentation Index
> Fetch the complete documentation index at: https://docs.turntable.so/llms.txt
> Use this file to discover all available pages before exploring further.

# BigQuery

> Pull source data from BigQuery

## Usage

```python theme={null}
from vinyl.lib.connect import BigQueryConnector
from vinyl import resource

@resource
def bigquery():
    return BigQueryConnector(
        service_account_info=os.getenv("GOOGLE_APPLICATION_CREDENTIALS"),
        tables=["*"],
    )
```
