Python-wowapi is a client library for interacting with the World of Warcraft Community API.
Documentation about installing and usage can be found at python-wowapi.readthedocs.org
pip install python-wowapiimport os
from wowapi import WowApi
api = WowApi(os.environ['WOW_CLIENT_ID'], os.environ['WOW_CLIENT_SECRET'])
data = api.get_auctions('eu', 'silvermoon', locale='de_DE')
print(data)pip install -e .
pip install -e .[tests]
py.test