Skip to content

A library to work with Adventure Time! Transcript with Deno

License

Notifications You must be signed in to change notification settings

shateq/adventure_time

Repository files navigation

Adventure Time! Transcript

deno.land

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!

Use Test

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);
});

License License

Project code is available under GNU GPL 3.0. Check LICENSE file.