Added partial 'fcuk' (Exploited College Girls) scraper. Added file parameter for actor names and scene URLs.

This commit is contained in:
DebaucheryLibrarian
2020-07-15 03:24:47 +02:00
parent eca54c2a09
commit 17b3ba1272
54 changed files with 187 additions and 20 deletions

View File

@@ -30,6 +30,10 @@ const { argv } = yargs
type: 'array',
alias: 'actor',
})
.option('actors-file', {
describe: 'Scrape actors names from file',
type: 'string',
})
.option('actor-scenes', {
describe: 'Fetch all scenes for an actor',
type: 'boolean',
@@ -53,10 +57,14 @@ const { argv } = yargs
alias: 'with-profiles',
default: false,
})
.option('scene', {
.option('scenes', {
describe: 'Scrape scene info from URL',
type: 'array',
alias: 'scenes',
alias: 'scene',
})
.option('scenes-file', {
describe: 'Scrape scene info from URLs in a file',
type: 'string',
})
.option('movie', {
describe: 'Scrape movie info from URL',