Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-26T17:37:54.000Z (5 months ago)
- Last Synced: 2024-10-31T10:51:44.624Z (2 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
[![deno.land](https://shield.deno.dev/x/adventure_time)](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 [![Test](https://github.com/shateq/adventure_time/actions/workflows/test.yml/badge.svg)](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 ![License](https://img.shields.io/github/license/shateq/adventure_time)
Project code is available under GNU GPL 3.0. Check [LICENSE](LICENSE) file.