Metadata-Version: 2.1
Name: AnimeScraper
Version: 1.0.5
Summary: A Simple library to get Anime and Character information. It scrapes all information from Myanimelist website.
Home-page: https://github.com/togashigreat/AnimeScraper
License: GPL-V3.0
Keywords: anime,scraper,myanimelist,fetcher,manga,anime library,api
Author: MuQiT
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: aiohttp (>=3.11.6,<4.0.0)
Requires-Dist: beautifulsoup4 (>=4.12.1,<5.0.0)
Requires-Dist: rapidfuzz (>=3.9.6,<4.0.0)
Project-URL: Repository, https://github.com/togashigreat/AnimeScraper
Description-Content-Type: text/markdown

<div align="center">

# AnimeScraper

![AnimeScraper Logo](./docs/assets/icon.svg)


![PyPI - Python Version](https://img.shields.io/pypi/pyversions/AnimeScraper)


**AnimeScraper** is an Open Source Python library designed for scraping and parsing anime-related data from MyAnimeList. With support for asynchronous requests, it allows you to fetch detailed information about anime, characters, and more efficiently.

</div>

> [!NOTE]
>
> Feel free to make any suggestion : )
> New Features are coming soon....📜


## 🚀 Features

- Fetch detailed anime information
- Retrieve character details
- Asynchronous data retrieval
- Easy-to-use API
- Fully typed and documented

## 🛠️ Installation

You can install AnimeScraper using pip:

```bash
pip install animescraper
```

## 📖 Quick Start


**Searching Anime** 

```python
import asyncio
from AnimeScraper import KunYu

async def main():

    scraper = KunYu()
    # Fetch anime detials by name
    anime = await scraper.search_anime("violet evergarden")  # Violet Evergarden
    print(anime.title)
    print(anime.synopsis)
    print(anime.stats.score)
    print(anime.characters[0].name)

asyncio.run(main())
```


**Searching Character** 

```python
import asyncio
from AnimeScraper import KunYu

async def main():

    scraper = KunYu()
    # Search and Fetch Character detials by name
    character = await scraper.search_character("Killua Zoldyck")

    print(character.name)
    print(character.url)
    print(character.description)
    print(character.about)

asyncio.run(main())
```


**Fetching Anime details**

```python
import asyncio
from AnimeScraper import KunYu

async def main():
    # Use async Context manager to fetch multiple anime with same session
    async with KunYu() as scraper:
        # Fetch anime details by ID
        anime = await scraper.get_anime("32281")  # Fullmetal Alchemist: Brotherhood
        print(anime.title)
        print(anime.synopsis)
        print(anime.stats.score)
        print(anime.characters[0].name)

asyncio.run(main())

```
**Fetching Character Details**

```python
async def get_character():
    scraper = KunYu()
        # Fetch character details by ID
    character = await scraper.get_character("11")  # Edward Elric
    print(character.name)
    print(character.japanese_name)

asyncio.run(get_character())
```
## 📖 Documentation

Detailed documentation is available. [Check out the Documentation](https://animescraper.readthedocs.io/en/latest/)

## 🌟 Key Components

- `KunYu`: Main interface for scraping anime and character data
- `Anime`: Detailed anime information model
- `Character`: Comprehensive character details model
- Asynchronous scraping with `aiohttp`


## 🔧 Requirements

- Python 3.8+
- aiohttp

## 📦 Project Structure

```
AnimeScraper/
│
├── AnimeScraper/
│   ├── Scraper.py       # Main scraping interface
│   ├── _model.py        # Data models
│   ├── malscraper.py    # HTTP connection handler
│   └── _parse_anime_data.py  # HTML parsing utilities
│
├── docs/                # Sphinx documentation
├── tests/               # Unit tests
└── pyproject.toml       # Project configuration
```
## 📄 License

Distributed under the MIT License. See LICENSE for more information.

## 📞 Contact

[Facebook](https://facebook.com/KiyotakaO.O)
[Telegram](t.me/togayuuta)

