Connectors
File
Pull source data from files
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Pull source data from files
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")
Was this page helpful?
