├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── make.bat └── source ├── anime.rst ├── authentication.rst ├── characters.rst ├── conf.py ├── forum.rst ├── index.rst ├── introduction.rst ├── lists.rst ├── manga.rst ├── reviews.rst ├── series.rst ├── staff.rst ├── studio.rst └── user.rst /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | source/_themes 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/README.md -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/make.bat -------------------------------------------------------------------------------- /source/anime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/anime.rst -------------------------------------------------------------------------------- /source/authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/authentication.rst -------------------------------------------------------------------------------- /source/characters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/characters.rst -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/forum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/forum.rst -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/introduction.rst -------------------------------------------------------------------------------- /source/lists.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/lists.rst -------------------------------------------------------------------------------- /source/manga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/manga.rst -------------------------------------------------------------------------------- /source/reviews.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/reviews.rst -------------------------------------------------------------------------------- /source/series.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/series.rst -------------------------------------------------------------------------------- /source/staff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/staff.rst -------------------------------------------------------------------------------- /source/studio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/studio.rst -------------------------------------------------------------------------------- /source/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshstar/AniList-API-Docs/HEAD/source/user.rst --------------------------------------------------------------------------------