Python: Column is equal to a value (original) (raw)

Match only rows where column is equal to value.

Parameters

(Required)
The column to filter on

(Required)
The value to filter by

Examples

With `select()`

response = (
    supabase.table("planets")
    .select("*")
    .eq("name", "Earth")
    .execute()
)