aura999
I am trying to stream into a csv file using nimble_csv(1.2.0) but running into issues.
This is the code I am using to create a csv file from the stream.
defmodule Utils
alias NimbleCSV.RFC4180, as: CSV
def write_to_file(content_stream) do
path = Path.join(System.tmp_dir(), "#{UUID.uuid4(:hex)}.csv")
content_stream
|> CSV.to_line_stream()
|> CSV.parse_stream([skip_headers: false])
|> Stream.into(File.stream!(path, [:write, :utf8]))
|> Stream.run()
end
end
This is my test data
contents = [
"First Name,Last Name,Email\n",
"David,Byrne,david@test.com"
]
|> Stream.map(&String.trim_leading/1)
Utils.write_to_file(contents)
The file is created however the contents in the file are missing the comma separator
and the new line characters
First NameLast NameEmailDavidByrnedavid@test.com
If however I update Utils.write_to_file/1 to by removing parse_stream/2
def write_to_file(content_stream) do
path = Path.join(System.tmp_dir(), "#{UUID.uuid4(:hex)}.csv")
content_stream
|> CSV.to_line_stream()
|> Stream.into(File.stream!(path, [:write, :utf8]))
|> Stream.run()
end
I get the csv contents in the correct format.
First Name,Last Name,Email
David,Byrne,david@test.com
I am not sure if I am missing any options that I need to pass to parse_stream/2 that would cause the contents to be malformed.
Any help would be appreciated
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
LostKobrakai
You’re trying this but your code is not streaming into a csv. It’s streaming data out of an csv into data.
parse_streamis parsing a stream of csv data into elixir data. The reverse would bedump_to_stream, which turns elixir data into a stream for csv formatted data.aura999
Okay thanks. So if I already have a stream do I just write it straight into the file without using
dump_to_stream/1?Also as per this NimbleCSV — NimbleCSV v1.3.0 since the description says
Lazily parses CSV from a stream and returns a stream of rows.I was assumingparse_stream/2could be passed a stream and it would output a streamLostKobrakai
Streams are lazy enumerables. Being a stream doesn’t tell you anything about what data the streams deals with.
parse_streammaps from a stream of csv formatted binaries to a stream of rows being lists of cell contents. It’s the lazy version toparse_enumerable, which immediately returns[[binary()]].In your case I’m really confused though because if you already have a csv file and you want to write that csv file, then there’s no need for NimbleCSV in the first place.
Enum.into(content_stream, file_collectable)would be all you need.What makes
streamseven more confusing here is that aFile.Streamstruct implements bothEnumerable.t(a - in this case lazy – collection to enumerate) as well asCollectable.t(a collection, which items can be pushed into), which work independently. You’re using the latter functionality here.aura999
Thanks for the detailed info @LostKobrakai. Appreciate it