Utility.RemoteCSV (Portico/Z v0.1.0)
Stream CSV data from a URL.
Shamelessly stolen from https://blog.agilion.com/decoding-a-hosted-csv-file-in-elixir-7aa0bb3f7468.
Link to this section Summary
Functions
Stream CSV data from a URL.
Link to this section Functions
Link to this function
stream(path)
Stream CSV data from a URL.
Examples
iex> RemoteCSV.stream(url)
...> |> CSV.decode(headers: true)
...> |> Enum.take(30)