> ## 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.

# Postgres

> Pull source data from Postgres

## Usage

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

@resource
def postgres():
    return PostgresConnector(
        host="myhost.com",
        port="5432",
        user='user',
        password='password',
        tables=["postgres.public.*"],
    )
```
