UNPKG

bedetheque-scraper

Version:

NodeJS script to scrap the entire database of dbgest.com / bedetheque.com (approx. 260.000+ albums)

25 lines (24 loc) 684 B
/// <reference types="cheerio" /> export declare class Album { serieId: number; albumId: number; serieTitle: string; albumTitle: string | null; scenario: string | null; drawing: string | null; colors: string | null; date: string | null; editor: string | null; nbrOfPages: number | null; imageCover: string | null; imageExtract: string | null; imageReverse: string | null; voteAverage: number; voteCount: number; constructor(page: Cheerio, $: CheerioAPI, serieId: number, serieTitle: string); private findVoteAverage; private findVoteCount; private findImage; private addDetails; private addDetail; }