Metadata-Version: 2.1
Name: BlizzardWarcraftAPI
Version: 0.2.7
Summary: Warcraft API
Home-page: https://github.com/Angeloffy/BlizzardWarcraftAPI/tree/main
License: MIT
Author: Angeloffy
Author-email: angeloffy.work@gmail.com
Maintainer: Angeloffy
Maintainer-email: angeloffy.work@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pre-commit (>=3.3.3,<4.0.0)
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Project-URL: Bug Tracker, https://github.com/Angeloffy/BlizzardWarcraftAPI/issues
Project-URL: Repository, https://github.com/Angeloffy/BlizzardWarcraftAPI/
Description-Content-Type: text/markdown

# BlizzardWarcraftAPI

![image](https://drive.google.com/uc?export=view&id=1bwLWgLTIHPy23sTfufMNV9NHhvQ4vQ1y)

BlizzardWarcraftAPI is a Python library designed to interact with the official World of Warcraft API provided by <a href="https://develop.battle.net/documentation/world-of-warcraft">Blizzard</a>. Although it is still a work in progress, active development is underway. It's important to note that this library is not an official Blizzard product, but rather the result of an independent developer's efforts.

BlizzardWarcraftAPI aims to provide a convenient and user-friendly interface for developers to access and utilize the wealth of data available through the World of Warcraft API. With this library, you can retrieve information about characters, items, quests, guilds, and more. It abstracts away the complexities of making API requests and handling responses, allowing developers to focus on building their applications or tools.

By leveraging Blizzard's official API, BlizzardWarcraftAPI ensures that the data obtained is accurate and up-to-date. As the library continues to evolve, additional features and enhancements will be added to expand its capabilities and improve its usability. Developers interested in utilizing the vast resources offered by the World of Warcraft API will find BlizzardWarcraftAPI to be a valuable tool in their projects.

# Installing
Install and update using <a href="https://pip.pypa.io/en/stable/getting-started/">pip</a>:
```shell
pip install BlizzardWarcraftAPI
```

# A Simple Example

### Get Access Token

````python
from BlizzardWarcraftAPI import BlizzardAuthToken

token = BlizzardAuthToken("ClientID", "ClientSecret")
token.get()
````

### Get Achievement Category & Character Hunter Pets Summary

````python
from BlizzardWarcraftAPI import BlizzardWarcraftAPI

api = BlizzardWarcraftAPI("token", "region", "locale")

GameData = api.GameData()
Profile = api.Profile()

GameData.get_AchievementCategory(1)
Profile.get_CharacterHunterPetsSummary("ravencrest", "bicmex")
````
