Scraping actor profiles from FreeOnes.
This commit is contained in:
11
src/argv.js
11
src/argv.js
@@ -19,11 +19,21 @@ const { argv } = yargs
|
||||
type: 'array',
|
||||
alias: 'site',
|
||||
})
|
||||
.option('actors', {
|
||||
describe: 'Scrape actors by name or slug',
|
||||
type: 'array',
|
||||
alias: 'actor',
|
||||
})
|
||||
.option('deep', {
|
||||
describe: 'Fetch details for all releases',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
})
|
||||
.option('redownload', {
|
||||
describe: 'Don\'t ignore duplicates, update existing entries',
|
||||
type: 'boolean',
|
||||
alias: 'force',
|
||||
})
|
||||
.option('url', {
|
||||
describe: 'Scrape scene info from URL',
|
||||
type: 'string',
|
||||
@@ -33,6 +43,7 @@ const { argv } = yargs
|
||||
describe: 'Don\'t fetch scenes older than',
|
||||
type: 'string',
|
||||
default: config.fetchAfter.join(' '),
|
||||
alias: 'limit',
|
||||
})
|
||||
.option('pages', {
|
||||
describe: 'Limit pages to scrape per site. Only used when no dates are found or --after is unset.',
|
||||
|
||||
Reference in New Issue
Block a user