Popularity
3.5
Declining
Activity
3.0
Stable
25
2
4
Monthly Downloads: 2,456
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.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

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!