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.

Details

Supports csv, parquet and json files. Can either be a directory or single file.

Usage

from vinyl.lib.connect import FileConnector
from vinyl import resource

@resource
def local_directory():
    return FileConnector(path="data")

@resource
def local_parquet():
    return FileConnector(path="data/test.parquet")

@resource
def local_csv():
    return FileConnector(path="data/test.csv")