UNPKG

bedetheque-scraper

Version:

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

11 lines (10 loc) 336 B
export interface ProxyType { host: string; port: number; } export declare class ProxyFetcher { static getFreeProxyList(timeout: number): Promise<ProxyType[]>; static requestProxy(list: ProxyType[], urlRaw: string, nbrRetry?: number): Promise<any>; private static getRandomProxy; private static timeoutRequest; }