elixir-xml-to-map alternatives and similar packages
Based on the "XML" category.
Alternatively, view elixir-xml-to-map alternatives based on common mentions on social networks and blogs.
CodeRabbit: AI Code Reviews for Developers
Do you think we are missing an alternative of elixir-xml-to-map or a related project?
README
XmlToMap
Creates an Elixir Map data structure from an XML string
Usage:
XmlToMap.naive_map("<foo><bar>123</bar></foo>")
Results in:
%{"foo" => %{"bar" => "123"}}
Converts xml string to an Elixir map with strings for keys, not atoms, since atoms are not garbage collected.
This tool is inspired by Rails Hash.from_xml()
I call the function "naive", because there are known short comings and there is some controversy around using a conversion tool like this since XML and Maps are non-isomorphic and there is no standard way to convert all the information from one format to another. The recommended way to pull specific well structured information from XML is to use something like xpath. But if you understand the risks and still prefer to convert the whole xml string to a map then this tool is for you!
It is currently not able to parse xml namespace. It also can't determine if a child should be a list unless it sees a repeated child. If and only if nodes are repeated at the same level will they beome a list.
# there are two points inside foo, so the value of "point" becomes a list. Had "foo" only contained one point then there would be no list but instead one nested map
XmlToMap.naive_map("<foo><point><x>1</x><y>5</y></point><point><x>2</x><y>9</y></point></foo>")
# => %{"foo" => %{"point" => [%{"x" => "1", "y" => "5"}, %{"x" => "2", "y" => "9"}]}}
Previously this package did not handle xml node attributes. The current version takes inspiration from a go goxml2json package and exports attributes in the map while prepending "-" so you know they are attributes.
Whenever we encounter an xml node with BOTH attributes and children, we wrap "#content" around the node's inner value.
For example this snippet has a Height
leaf node with attribute Units
and a value of 0.50
:
<ItemDimensions>
<Height Units="inches">0.50</Height>
</ItemDimensions>
This would become this snippet:
...
"ItemDimensions": {
"Height": {
"#content": "0.50",
"-Units": "inches"
}
}
Empty tags will have a value of nil.
There is a dependency on Erlsom to parse xml then converts the 'simple_form' structure into a map.
I prefer Erlsom because it is the best documented erlang xml parser and because it mentions that it does not produce new atoms during the scanning.
See tests for some example usage.
Installation
If available in Hex, the package can be installed as:
- Add
elixir_xml_to_map
to your list of dependencies inmix.exs
:
def deps do
[{:elixir_xml_to_map, "~> 2.0"}]
end
- Ensure
elixir_xml_to_map
is started before your application:
def application do
[applications: [:elixir_xml_to_map]]
end