SupabaseClient
SupabaseClient
¶
SupabaseClient(table_name: str)
Bases: BaseClient
Client for interacting with a Supabase database.
This client provides methods for performing common database operations
using the Supabase client library.
It inherits from BaseClient
and implements the abstract methods defined there.
This client relies on environment variables SUPABASE_URL
and SUPABASE_KEY
to initialize the Supabase client.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
table_name
|
str
|
The name of the table to interact with. |
required |
Source code in supadantic/clients/supabase.py
28 29 30 31 32 33 34 35 36 37 38 39 40 |
|