forked from consumet/consumet.ts
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
607 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set | ||
* text=auto | ||
|
||
# Require Unix line endings | ||
* text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,9 @@ | ||
```mermaid | ||
classDiagram | ||
ProviderBase <|-- BaseParser | ||
ProviderBase : +String name | ||
ProviderBase : +String baseUrl | ||
ProviderBase: +toString() | ||
BaseParser <|-- AnimeParser | ||
BaseParser <|-- BookParser | ||
BaseParser <|-- MangaParser | ||
class BaseParser{ | ||
+search(String url) | ||
} | ||
class AnimeParser{ | ||
+fetchAnimeInfo(String animeUrl) | ||
+fetchEpisodeSources(String episodeUrl) | ||
+fetchEpisodeServers(String episodeUrl) | ||
} | ||
class BookParser{ | ||
+fetchBookInfo(String bookUrl) | ||
} | ||
class MangaParser{ | ||
+fetchMangaInfo(String mangaUrl) | ||
} | ||
``` | ||
<h1 align="center">Consumet Extensions</h1> | ||
<h2> Table of Contents </h2> | ||
|
||
# | ||
|
||
```mermaid | ||
flowchart | ||
A(src)-->B(models) | ||
A-->C(providers); | ||
A-->D(utils); | ||
B-->base-parser.ts | ||
B-->anime-parser.ts | ||
B-->book-parser.ts | ||
B-->manga-parser.ts | ||
B-->view-extractor.ts | ||
B-->types.ts | ||
C-->H(anime) | ||
C-->I(books) | ||
C-->J(manga) | ||
C-->K(others) | ||
D-->E(extractors) | ||
E-->gogocdn.ts | ||
E-->streamsb.ts | ||
D-->utils.ts | ||
H-->F(all) | ||
H-->G(en) | ||
I-->L(all) | ||
I-->M(en) | ||
J-->N(all) | ||
J-->O(en) | ||
K-->P(all) | ||
K-->Q(en) | ||
G-->gogoanime.ts | ||
G-->9anime.ts | ||
L-->lebgen.ts | ||
```; | ||
- [Getting Started](./guides/getting-started.md): Introduction tutorial for Consumet Extensions. This is where beginners should start. | ||
- [Anime](./guides/anime.md): How to use the anime providers. | ||
- [Manga](./guides/manga.md): How to use the manga providers. | ||
- [Light Novel](./guides/light-novels.md): How to use the light novel providers. | ||
- [Benchmarks](https://github.com/consumet/providers-status#readme): Real-time benchmarking of providers. | ||
- [Contributing](./guides/contributing.md): Details about how to contribute to Consumet Extensions. |
Oops, something went wrong.