onkara
This post builds on the requirements mentioned in a similar post.
I am using NimbleCSV and I am a Elixir n00b
My Use case: Customer uploads CSV with 2 set of headers
- fixed and known headers, this one is easy as shown here
- additional variable number of headers
I can’t figure how using NimbleCSV can I capture additional variable number of headers and its corresponding columns in either the same map or a different map.
The parsed output I would like to achieve is
[
%{
fixed_h1: "val1",
fixed_h2: "val2",
fixed_h3: "val3",
variable_h1: "val4",
variable_h2: "val5", .....
}
]
Trending in Questions
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
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
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
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
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
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
Hi @onkara, what have you tried so far?
onkara
I think I managed to solve it, but I think there is a more elegant solution out there
the output is (trimmed)
As you can see in the output I need to do some data type specific transformation i.e.
HbA1cshould be6.3not6/3. So I guess I can use pattern matching onformat_colfunction variants using regular expressions, but not sure if this is the best approach?fchabouis
I used the following code to output a map, whose keys are the column names and values are the row values.
The idea is to keep the headers row, and use a
Stream.transform. The accumulator contains the headers, and you zip the headers with each row. You don’t need to know which headers will be there.LostKobrakai
nimble_csv has options to drop byte order marks (the
\uFEFF).fchabouis
In my real code, I’m using
NimbleCSV.RFC4180.parse_stream, and I understand from the documentation I cannot trim_bom from a stream.Here that part is probably not necessary.
Thanks for your comment!
dimitarvp
That sucks but it depends how big CSV payloads you are expecting. If they cap at 4-5MB it’s likely a non-issue just to download them fully and then make use of the
:trim_bomsetting.dimitarvp
But at the same time, here’s a super lame implementation I came up with in 5 minutes:
And you can put that function at the start of your pipe. But I fear that it’s super inefficient.