Skip to content

Commit

Permalink
Merge pull request #11 from zYxDevs/update
Browse files Browse the repository at this point in the history
feat: kuramanime
  • Loading branch information
zYxDevs authored Jul 3, 2023
2 parents 416676a + 39d0fcf commit 823005d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ _There's many useful features in bot but it required big resource, so i make it
- [x] nHentai zipper
- [x] Sheakomik, Sheamanga zipper
- [x] Komikindo.info zipper
- [x] Mikoroku zipper
- [x] Otomi Games
- [x] Search parser
- [x] Download link scrapper
Expand Down Expand Up @@ -71,6 +72,7 @@ _For nekopoi search only works in [bot](https://t.me/wibuapibot)._
| [Kusonime](https://github.com/zYxDevs/wibu-api-py#kusonime) | link |
| [Doronime](https://github.com/zYxDevs/wibu-api-py#doronime) | link |
| [Samehadaku](https://github.com/zYxDevs/wibu-api-py#samehadaku) | link |
| [Kuramanime](https://github.com/zYxDevs/wibu-api-py#kuramanime) | link |
| [Nekopoi](https://github.com/zYxDevs/wibu-api-py#nekopoi) | link |

#### [Lendrive](https://lendrive.web.id)
Expand Down Expand Up @@ -121,6 +123,14 @@ res = api.samehadaku(url)
print(res)
```

#### [Kuramanime](https://kuramalink.my.id)
```python
# works with batch, bd, and single eps link
url = "https://kuramanime.art/anime/2004/mushoku-tensei-isekai-ittara-honki-dasu-shugo-jutsushi-fitz/episode/1"
res = api.kuramanime(url)
print(res)
```

#### [Nekopoi](https://nekopoi.care)
```python
# works with single eps link (hentai, jav)
Expand Down
11 changes: 11 additions & 0 deletions wibuapi/wibuapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,17 @@ def samehadaku(self, link: str):
except Exception as e:
return f"An error occured report on @YBotsSupport\n\n{e}"

def kuramanime(self, link: str):
"""works with batch, bd, and single eps link
https://kuramanime.art/anime/2004/mushoku-tensei-isekai-ittara-honki-dasu-shugo-jutsushi-fitz/episode/1
"""
try:
url = f"{self.base_url}/anime/kuramanime?link={link}"
response = get(url, timeout=15).json()
return dumps(response, indent=2)
except Exception as e:
return f"An error occured report on @YBotsSupport\n\n{e}"

def rawkuma(self, link: str):
"""works with list and single chapter
list: https://rawkuma.com/manga/guilty-circle/
Expand Down

0 comments on commit 823005d

Please sign in to comment.