UNPKG

fandomscraper

Version:

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

13 lines (11 loc) 336 B
import { FateENDataSource } from "./data-source"; /** * Schema for Fate/Type-Moon wiki * The List of Servants page currently renders as a sortable wiki table. */ const FateEN: ISchema = { url: 'https://typemoon.fandom.com/wiki/List_of_Servants', pageFormat: 'table-5', dataSource: FateENDataSource }; export { FateEN };