Library for archiving a web page along with its linked resources (images, css, js) for local use.
toml
web-archive = "0.1.0"
```rust use web_archive::{archive, blocking};
// Build a collection of linked resources attached to the page
// async API let archive = archive("http://example.com").await.unwrap();
// blocking API let archive = blocking::archive("http://example.com").unwrap();
// Embed the resources into the HTML let page = archive.embed_resources();
println!("{}", page); ```
The main library contains unit tests for the parsing functionality, and dynamic tests against a local webserver are in the dynamic_tests directory. The dynamic tests are built with Rocket which requires Nightly Rust, however the main library builds on Stable.
bash
cargo test
cd dynamic_tests && cargo run
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.