This crate provides utilities for analyzing PageGraph outputs.
pagegraph
provides a core library for interacting directly with pagegraph files and building custom extraction tools.
pagegraph-cli
provides a more convenient, no-code wrapper around common operations, supplying outputs in easily-parseable formats.
The following example reads from a PageGraph file and produces all deleted
div
elements from the corresponding webpage.
```rust use pagegraph::fromxml::readfrom_file; use pagegraph::types::{ NodeType, EdgeType };
fn main() { let graph = readfromfile("/path/to/any/pagegraph.graphml");
let deleted_divs = graph.filter_nodes(|node| {
match node {
NodeType::HtmlElement { is_deleted: true, tag_name, .. } if tag_name == "div" => true,
_ => false,
}
});
} ```