Ah yes I am using the supabase-py client I think. ...
# python
b
Ah yes I am using the supabase-py client I think. I’m using the example from the GitHub:
Copy code
import os
from supabase import create_client, Client

url: str = os.environ.get("SUPABASE_URL")
key: str = os.environ.get("SUPABASE_KEY")
supabase: Client = create_client(url, key)