Improved Woodman profile scraper.

This commit is contained in:
DebaucheryLibrarian
2026-01-18 02:14:39 +01:00
parent 841d3a8475
commit ec85faf93a
4 changed files with 25 additions and 15 deletions

View File

@@ -2,6 +2,7 @@
const test = require('node:test');
const assert = require('node:assert/strict');
const unprint = require('unprint');
const argv = require('../src/argv');
const include = require('../src/utils/argv-include')(argv);
@@ -12,6 +13,10 @@ const { resolveLayoutScraper } = require('../src/scrapers/resolve');
const getRecursiveParameters = require('../src/utils/get-recursive-parameters');
const knex = require('../src/knex');
unprint.options({
logErrors: false,
});
const actors = [
// vixen
{ entity: 'vixen', name: 'Abella Danger', fields: ['gender', 'avatar', 'description'] },
@@ -176,7 +181,7 @@ const actors = [
{ entity: 'sexlikereal', name: 'Agatha Vega', fields: ['avatar', 'birthPlace', 'height', 'weight', 'description'] },
{ entity: 'porncz', name: 'Kama Oxi', fields: ['avatar', 'gender', 'birthCountry', 'ethnicity', 'age', 'hairColor', 'cup', 'naturalBoobs', 'hasTattoos'] },
{ entity: 'score', name: 'Vanessa Blue', fields: ['avatar', 'gender', 'placeOfResidence', 'ethnicity', 'height', 'weight', 'measurements', 'hairColor', 'dateOfBirth'] },
{ entity: 'pierrewoodman', name: 'Makayla Cox', fields: ['avatar', 'nationality'] },
{ entity: 'pierrewoodman', name: 'Abby Lee Brazil', fields: ['avatar', 'nationality'] },
];
const actorScrapers = scrapers.actors;