0.0.2
Adventure Time! Transcript - Deno ready library
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
deno.land/x
Versions
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
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.