nzz-downloader/download/src/lib.rs

20 lines
406 B
Rust

//! A small utility to download issues of the NZZ newspaper.
use anyhow::Result;
use cli::Config;
pub mod cli;
pub mod date;
pub mod download;
pub mod nzz;
pub mod pdf;
/// Entry point to download nzz issues.
pub async fn run(args: Config, cookie: &str) -> Result<()> {
let issues = nzz::fetch(cookie, args.from, args.to).await?;
download::fetch(issues, &args.output_dir).await?;
Ok(())
}