Docs
HTTPS

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

This function fetches and return a file via a URL over https, with a default GET method, with optional provision for custom headers

Parameter

  • url: string - the remote location of the file.
  • sep: string - the delimeter or seperator
  • header?: Headers (opens in a new tab) - add custom headers to the HTTP request

Returns

  • Promise<Dataframe<T>>
const df: Dataframe<T> = await csv.open.https<T>("https://.../.../file.csv", ",");