Deno-ready (+ node support) TypeScript library for searching through AT transcript pages. Fetches pages from AT fandom website and parses it to be accessible from library.
⚠️ Alpha stage! Breaking the breaking changes!
import {
episodeList,
seasonTable,
} from 'https://deno.land/x/adventure_time/mod.ts';
seasonTable(4).then((list) => {
const episode = list[0].transcribeListed();
console.log(episode.name);
});
episodeList().then((list) => {
console.table(list);
});
Project code is available under GNU GPL 3.0. Check LICENSE file.