arquery

arquery crate arquery documentation

A Sync + Send simple implementation of a HTML/XML DOM tree which allows simple operations like querying by CSS selectors, makes dealing with XML files less painful.

Fork of rquery without reference-counting.

Example

```rust use arquery::Document;

fn main() { let document = Document::newfromxml_file("tests/fixtures/sample.xml").unwrap();

let title = document.select("title").unwrap(); asserteq!(title.text(), "Sample Document"); asserteq!(title.attr("ref").unwrap(), "main-title");

let itemcount = document.selectall("item").unwrap().count(); asserteq!(itemcount, 2);

let itemtitles = document.selectall("item > title").unwrap() .map(|element| element.text().clone()) .collect::>() .join(", "); asserteq!(itemtitles, "Another Sample, Other Sample"); } ```