forked from danmax/r34-scraper
feat(cli): add page argument to start scraping from a specific page
This commit is contained in:
@@ -14,8 +14,12 @@ pub struct Args {
|
||||
#[arg(short, long)]
|
||||
pub tags: Option<Vec<String>>,
|
||||
|
||||
/// Page to start scraping from
|
||||
#[arg(short, long, default_value_t = 1)]
|
||||
pub page: usize,
|
||||
|
||||
/// Async jobs to use for fetching
|
||||
#[arg(short, long, default_value = "4")]
|
||||
#[arg(short, long, default_value_t = 4)]
|
||||
pub jobs: usize,
|
||||
|
||||
/// Delay for rate-limits (ms)
|
||||
|
Reference in New Issue
Block a user