Docs
Supabase Storage

Breadroll.open.supabaseStorage<T>(...)

This function takes in the bucket name and filepath of the file, downloads the file, parses the files and retuns a Dataframe

Parameter

  • bucketName: string - the Supabase bucket name.
  • filepath: string - the specific file name in the specified bucket
  • sep: string - the delimeter or seperator

Returns

  • Promise<Dataframe<T>>
const df: Dataframe<T> = await csv.open.supabseStorage<T>("bucketName", "filepath", ",");