A Python wrapper for Blizzard API
Project description
blizzardapi2
blizzardapi2 is a client library for Blizzard's APIs. It's a fork of the original library.
Current supported features include:
- Battle.net User
- WoW Profile
- WoW Game Data
- WoW Classic Game Data
- Diablo 3 Community
- Diablo 3 Game Data
- Hearthstone Game Data
- Starcraft 2 Community
- Starcraft 2 Game Data
Type hints have been added as well.
To gain access to Blizzard's API please register here to obtain a client id and client secret.
For more information on Blizzard's API visit:
Official Documentation
Official API Forum
Requirements
Python (3.9, 3.10, 3.11)
Installing
pip install blizzardapi2
Example
main.py
from blizzardapi2 import BlizzardApi
api_client = BlizzardApi("client_id", "client_secret")
# Unprotected API endpoint
categories_index = api_client.wow.game_data.get_achievement_categories_index("us", "en_US")
# Protected API endpoint
summary = api_client.wow.profile.get_account_profile_summary("us", "en_US", "access_token")
# Wow Classic endpoint
connected_realms_index = api_client.wow.game_data.get_connected_realms_index("us", "en_US", is_classic=True)
Access token vs Client ID/Client Secret
You can pass in a client_id
and client_secret
and use almost any endpoint except for a few that require an access_token
obtained via OAuth authorization code flow. You can find more information at https://develop.battle.net/documentation/guides/using-oauth/authorization-code-flow.
Here is the list of endpoints, specified by Blizzard, that require an OAuth token.
GET /oauth/userinfo
GET /profile/user/wow
GET /profile/user/wow/protected-character/{realm-id}-{character-id}
GET /profile/user/wow/collections
GET /profile/user/wow/collections/pets
GET /profile/user/wow/collections/mounts
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file blizzardapi2-0.1.6.tar.gz
.
File metadata
- Download URL: blizzardapi2-0.1.6.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.3 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a059665b8019781878d7e1132b0f3ee096b7acd161cdadeef4d324ea5e70d7fe |
|
MD5 | c358f74d0bf1858f671e3357eaff7a01 |
|
BLAKE2b-256 | cd4841a8f9e96fae34cc9565d95e334062c9f03df62c54d1f8d1ecb77da5daf2 |
File details
Details for the file blizzardapi2-0.1.6-py3-none-any.whl
.
File metadata
- Download URL: blizzardapi2-0.1.6-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.3 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24e68d9a6e480c7d081668a36e746c7624acc0a7738b10a3520836ea094ac7cc |
|
MD5 | db392d662fc111fd76df0a00a0bcc299 |
|
BLAKE2b-256 | 1fff394f82334b10717cf25a7c6d3c6f400806279b1c348d60c5c236ff169628 |