Skip to main content

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.

Usage

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.*"],
    )