Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 732 Bytes

File metadata and controls

35 lines (23 loc) · 732 Bytes

python-wowapi

Build Status

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

Installing

pip install python-wowapi

Usage

import 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)

Development & Testing

pip install -e .
pip install -e .[tests]
py.test