i'm trying to use supabase for my tiny discord bot...
# python
z
i'm trying to use supabase for my tiny discord bot, and am currently testing it to see if it works, but for some reason, even though i put some sample data in my table, the request always comes up empty
Copy code
py
supabase = supabase.create_client(url, key)
data = supabase.table("lengths").select("*").execute()
print(data.data)
output: [] looking at the api logs, the requests are successful, it's just not giving any data