79209529

Date: 2024-11-21 02:57:57
Score: 0.5
Natty:
Report link

Use like this:

response = supabase.table("faculty").select("*").execute()
df1 = pd.DataFrame(response[5:])
df1

or

response = supabase.table("faculty").select("*").execute()
df1 = pd.DataFrame(response['data'])
df1

I am not sure if your table response is a string or an object.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anubhav Sharma