fandomscraper
Version:
A package to scrap fandoms wikis characters page. Only scraps the characters info section and the list of all repertoried characters.
17 lines (14 loc) • 546 B
text/typescript
import { DeathNoteFRDataSource, DeathNoteENDataSource } from "./data-source";
const DeathNoteFR: ISchema = {
url: 'https://deathnote.fandom.com/fr/wiki/Cat%C3%A9gorie:Personnages',
pageFormat: 'classic',
category: 'Catégorie:Personnages',
dataSource: DeathNoteFRDataSource
};
const DeathNoteEN: ISchema = {
url: 'https://deathnote.fandom.com/wiki/Category:Manga_characters',
pageFormat: 'classic',
category: 'Category:Manga_characters',
dataSource: DeathNoteENDataSource
};
export { DeathNoteFR, DeathNoteEN };