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) • 467 B
text/typescript
import { OnePieceFRDataSource, OnePieceENDataSource } from "./data-source";
const OnePieceFR: ISchema = {
url: 'https://onepiece.fandom.com/fr/wiki/Liste_des_Personnages_Canon',
pageFormat: 'table-1',
dataSource: OnePieceFRDataSource
};
const OnePieceEN: ISchema = {
url: 'https://onepiece.fandom.com/wiki/List_of_Canon_Characters',
pageFormat: 'table-3',
dataSource: OnePieceENDataSource
};
export { OnePieceFR, OnePieceEN };