A simple wrapper around the offical Guild Wars 2 JSON API.
Project description
gw2apiwrapper is a Python library designed to abstract away the overhead and complexity of interacting with the official Guild Wars 2 (GW2) API via Python.
The library aims to make it easy to write and read Python applications and tools with only a minimal knowledge of the GW2 API itself.
This is accomplished by abstracting away the standard JSON->dictionary mapping scheme that is so commonly used and replace it with an OOP-style (eg. item.name) notation.
Installation
Simply install with pip/pipenv and you’re good to go:
pip install gw2apiwrapper
Example
from gw2apiwrapper import AccountAPI, GlobalAPI
# Get an account based object. Requires API Key.
personal = AccountAPI("<APIKEY>")
# Get a 'Global' api object. (Non-authed)
workHorse = GlobalAPI()
# This is iterable, as not only does it fill the personal.bank
# attribute, it also returns that information allowing it to be
# used in loops..even though we don't here.
personal.getBank()
# Should be self documenting, but demonstrates that the previous
# getBank() call actually populated that object's 'bank' attribute.
bankIDs = [slot['id'] for slot in personal.bank if slot is not None]
# GlobalAPI's getItem can take different types, all documented.
itemObjects = workHorse.getItem(bankIDs)
# Get the names of all items in bank.
for item in itemObjects:
print(item.name)
NOTES
This project is in semi-active development. The groundwork is laid, and most of the API is accounted for. If something you need is missing and you’d like it added feel free to open an issue (or a pull request!) on GitHub.
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
Hashes for gw2apiwrapper-2.6.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73887c84c5636d5d4b84bd84bc5e1d4b25ad1afca7f7084188e0e56335594f21 |
|
MD5 | 46bdf2e56c800f856d7b96f58697ddc9 |
|
BLAKE2b-256 | 50edf8f628081fff5ffc11e1a660566d83c5c241ce113ad43c8552fe3ceda567 |