supabase-py icon indicating copy to clipboard operation
supabase-py copied to clipboard

Python Client for Supabase. Query Postgres from Flask, Django, FastAPI. Python user authentication, security policies, edge functions, file storage, and realtime data streaming. Good first issue.

Results 119 supabase-py issues
Sort by recently updated
recently updated
newest added

# Feature request ## Is your feature request related to a problem? Please describe. Currently, Realtime server sends all database changes to all connected clients despite Postgres Row Level Security...

realtime

TODO: - [ ] Update dep/lock file - [ ] Add/update tests

**Is your feature request related to a problem? Please describe.** As part of an ongoing effort to get an overview of where the different client libraries are at(with respect to...

tests

# Feature request Realtime server is now checking every minute to verify the validity of the user access token and storing updated user information from the JWT to Realtime's `subscription`...

enhancement
realtime

Realtime RLS will be broadcasting database changes with `errors` so that clients can capture what went wrong when listening to database changes. Please see here for the current error states:...

enhancement
realtime

Hello, I am trying to query a table by adding multiple filters in the following manner: `supabase_client.table("table").select("*").eq('col1', value1).lte('col2', value2).lte('col3', value3).execute()['data']` I do not get any data returned despite there being...

question
needs repro

**Describe the bug** After signing in a user using ` supabase-py` a user is correctly returned with it's acces_token etc. However if I try to insert or select a row...

enhancement
postgrest

**Describe the bug** When filtering for a nested column, sanitize_param is adding unneccessary " " **To Reproduce** `supabase.table('character_inventory').select('character(*), slot, item(*, template(*))').eq('character.user_id', user_id).execute()` resolves to: `/rest/v1/character_inventory?select=character(*),+slot,+item(*,+template(*))&"character.user_id"=eq.2731f9cc-17f4-42a2-839a-d25dfe8d90a8` returns HTTP 400 **Expected behavior**...

bug
postgrest

**Describe the bug** Hello, i need to know if there is a way to insert multiple rows with a single write. It'ss a feature that i think is a must...

enhancement
postgrest

There have been multiple requests for a FastAPI tutorial. For this task, we're looking for a tutorial or blogpost which showcases the use of `supabase` with FastAPI. There are no...

documentation
good first issue