UNPKG

fandomscraper

Version:

A package to scrap fandoms wikis characters page. Only scraps the characters info section and the list of all repertoried characters.

15 lines (12 loc) 477 B
import { DeathNoteFRDataSource, DeathNoteENDataSource } from "./data-source"; const DeathNoteFR: ISchema = { url: 'https://deathnote.fandom.com/fr/wiki/Cat%C3%A9gorie:Personnages', pageFormat: 'classic', dataSource: DeathNoteFRDataSource }; const DeathNoteEN: ISchema = { url: 'https://deathnote.fandom.com/wiki/Category:Manga_characters', pageFormat: 'classic', dataSource: DeathNoteENDataSource }; export { DeathNoteFR, DeathNoteEN };