https://github.com/shateq/adventure_time
A library to work with Adventure Time! Transcript with Deno
https://github.com/shateq/adventure_time
adventure-time deno typescript
Last synced: 3 months ago
JSON representation
A library to work with Adventure Time! Transcript with Deno
- Host: GitHub
- URL: https://github.com/shateq/adventure_time
- Owner: shateq
- License: gpl-3.0
- Created: 2022-09-28T14:53:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-26T17:37:54.000Z (10 months ago)
- Last Synced: 2025-04-12T06:52:49.926Z (3 months ago)
- Topics: adventure-time, deno, typescript
- Language: TypeScript
- Homepage: https://deno.land/x/adventure_time
- Size: 43.9 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Adventure Time! Transcript
[](https://deno.land/x/adventure_time)
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 [](https://github.com/shateq/adventure_time/actions/workflows/test.yml)
```js
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 
Project code is available under GNU GPL 3.0. Check [LICENSE](LICENSE) file.