bedetheque-scraper
Version:
NodeJS script to scrap the entire database of dbgest.com / bedetheque.com (approx. 260.000+ albums)
15 lines (14 loc) • 469 B
TypeScript
import { ProxyType } from './proxy-fetcher';
import { Serie } from './serie';
import { Album } from './album';
export declare class Scraper {
static getSeriesUrlFromLetter(proxyList: ProxyType[], letter: string): Promise<any>;
static getSerie(proxyList: ProxyType[], uri: string, sleepTime: number): Promise<{
serie: null;
albums: null;
} | {
serie: Serie;
albums: Album[];
}>;
private static raceMultipleRequests;
}