Skip to main content

Adventure Time! Transcript

Deno-ready TypeScript library for searching through AT transcript pages. Fetches pages from AT fandom website and parses it to be accessible from library.

⚠️ Alpha stage! TODO is to document the project!

Use Test

deno.land/x

import { seasonTable, episodeList } from '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);
})

License

Project code is available under GNU GPL 3.0 license, check LICENSE file for details.