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.