Skip to main content

Documentation Index

Fetch the complete documentation index at: https://arivu.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

SDK Configuration

Integrating Snowflake within your Python application is seamless. Utilize the Arivu.connect() static factory.
from arivu import Arivu

db = Arivu.connect(
    dialect="snowflake",
    account="xy12345.us-east-1",
    warehouse="ANALYTICS_WH",
    user="data_eng",
    password="secure",
    dbname="PROD_DATA"
)
Setting mode="user" prevents Arivu from executing destructive SQL operations (like DROP or UPDATE). They will instead be held in an approval queue.