https://github.com/theprojectsx/anime-quotes-api
A Unofficial module of Official Anime Characters Database API to get Anime Quotes!
https://github.com/theprojectsx/anime-quotes-api
Last synced: about 1 year ago
JSON representation
A Unofficial module of Official Anime Characters Database API to get Anime Quotes!
- Host: GitHub
- URL: https://github.com/theprojectsx/anime-quotes-api
- Owner: TheProjectsX
- License: mit
- Created: 2024-08-28T15:39:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-28T15:42:30.000Z (almost 2 years ago)
- Last Synced: 2025-02-13T00:45:35.370Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Anime Quotes API
Get Anime quotes by using this API! This is an Unofficial Implementation of Official [Anime Character Database](https://www.animecharactersdatabase.com/api_series_characters.php) API
## Story:
I wan working on my [Anime Kingdom](https://github.com/TheProjectsX/anime-kingdom) website Project. But I could not find any Free Anime Character Quotes API / Module. So what? We created one by Ourselves! We are Programmers After all!
## Installation:
```bash
pip install git+https://github.com/TheProjectsX/anime-quotes-api.git
```
## Methods Available:
- getAnimeByQuery
- getCharactersByAnimeId
- getCharactersByQuery
- getCharacterById
- getCharacterQuotesById
## Usages:
```python
import anime_quotes as api
anime = api.getAnimeByQuery("naruto shippuden")
characters = api.getCharactersByAnimeId("100053")
characters = api.getCharactersByQuery("naruto")
character = api.getCharacterById("7861")
quotes = api.getCharacterQuotesById("7861")
```
## Parameters:
The main `getCharacterQuotesById` Function has 3 parameters:
- id : Character ID
- skip : How many Quotes to Skip (Numeric, Default = 0) [Unofficial - Not included in the Official API]
- limit : How many Quotes to Get (Numeric, Default = 20). You can use `None` as value to get all the Quotes available [Unofficial - Not included in the Official API]