Popularity
3.5
Growing
Activity
0.0
Stable
24
1
4
Monthly Downloads: 3,376
Programming language: Elixir
License: Apache License 2.0
Tags:
XML
exml alternatives and similar packages
Based on the "XML" category.
Alternatively, view exml alternatives based on common mentions on social networks and blogs.
-
readability
Readability is Elixir library for extracting and curating articles. -
elixir-xml-to-map
Converts XML String to Elixir Map data structure with string keys
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of exml or a related project?
Popular Comparisons
README
Exml
Add to mix.exs
defp deps() do
[
{:exml, "~> 0.1.1"}
]
end
Basic usage
xml = """
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book>
<title lang="en">Harry Potter</title>
<price>29.99</price>
</book>
<book>
<title lang="en">Learning XML</title>
<price>39.95</price>
</book>
</bookstore>
"""
doc = Exml.parse xml
Exml.get doc, "//book[1]/title/@lang"
#=> "en"
Exml.get doc, "//title"
#=> ["Harry Potter", "Learning XML"]
See w3schools for details about xpath!