Crates.io | elementtree |
lib.rs | elementtree |
version | 1.2.3 |
source | src |
created_at | 2017-03-28 14:10:46.106442 |
updated_at | 2023-01-04 12:30:06.458677 |
description | Parse an XML file into Python elementtree like structure |
homepage | |
repository | https://github.com/mitsuhiko/elementtree-rust |
max_upload_size | |
id | 9180 |
size | 266,435 |
This library parses XML into a Python ElementTree like structure. It currently has basic support for reading and writing with pretty good namespace support and the ability to inspect the file.
It's not recommended to use this for larger documents as the entire document will be loaded into memory. However it's pretty good for working with configuration files and similar things.
let root = Element::from_reader(r#"<?xml version="1.0"?>
<root xmlns="tag:myns" xmlns:foo="tag:otherns">
<list a="1" b="2" c="3">
<item foo:attr="foo1"/>
<item foo:attr="foo2"/>
<item foo:attr="foo3"/>
</list>
</root>
"#.as_bytes()).unwrap();
let list = root.find("{tag:myns}list").unwrap();
for child in list.find_all("{tag:myns}item") {
println!("attribute: {}", child.get_attr("{tag:otherns}attr").unwrap());
}