Crates.io | saqif |
lib.rs | saqif |
version | 0.1.0 |
source | src |
created_at | 2024-04-13 12:23:49.7134 |
updated_at | 2024-04-13 12:23:49.7134 |
description | A simple application to take screenshots of given URLs |
homepage | |
repository | https://github.com/rashyad/saqif |
max_upload_size | |
id | 1207537 |
size | 73,093 |
Saqif is a simple application to quickly take screenshots of any given URL that is publicly accessible
use saqif::screenshot;
fn main() {
let urls = vec![
String::from("https://doc.rust-lang.org/reference/visibility-and-privacy.html"),
String::from("https://doc.rust-lang.org/reference/names/namespaces.html"),
String::from("https://doc.rust-lang.org/reference/paths.html")
];
let file_path = String::from("./examples");
let r = screenshot::Screenshot::new(urls, file_path)
.expect("Failed to init");
r.get_screenshots();
}