Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

Latest commit

 

History

History
43 lines (34 loc) · 1.49 KB

README_PYPI.md

File metadata and controls

43 lines (34 loc) · 1.49 KB

AniKimi API

A Simple, LightWeight, Statically-Typed Python3 API wrapper for GogoAnime
The v2 of gogoanimeapi (depreciated)
Made with JavaScript and Python3

from anikimiapi import AniKimi

anime = AniKimi(
    gogoanime_token="dbakbihihrkqnk3",
    auth_token="EKWBIH4NJTO309U4HKTHI39U9TJ5OJ0UU5J9"
)

# Getting Anime Links
anime_link = anime.get_episode_link(animeid="clannad-dub", episode_num=3)

print(anime_link.link_hdp)
print(anime_link.link_720p)
print(anime_link.link_streamsb) # And many more...

Features of AniKimi

  • Custom url changing option.
  • Statically-Typed, No more annoying JSON responses.
  • Autocomplete supported by most IDE's.
  • Complete solution.
  • Faster response.
  • Less CPU consumption.

For full usage instructions, Head over to the GitHub Page.