Metadata-Version: 2.1
Name: python-wowapi
Version: 2.0.0
Summary: Python-wowapi is a client library for the World of Warcraft Community API.
Home-page: https://github.com/lockwooddev/python-wowapi
Author: Carlo Smouter
Author-email: lockwooddev@gmail.com
License: MIT
Keywords: warcraft,api,wow,auctionhouse,community
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.19.1)
Provides-Extra: docs
Requires-Dist: Sphinx (==1.8.1); extra == 'docs'
Provides-Extra: tests
Requires-Dist: pytest (==3.8.2); extra == 'tests'
Requires-Dist: pytest-flakes (==4.0.0); extra == 'tests'
Requires-Dist: pytest-pep8 (==1.0.6); extra == 'tests'
Requires-Dist: pytest-cov (==2.6.0); extra == 'tests'
Requires-Dist: mock (==2.0.0); extra == 'tests'
Requires-Dist: pytest-mock (==1.10.0); extra == 'tests'

# python-wowapi

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](https://python-wowapi.readthedocs.org)

## Installing

```bash
pip install python-wowapi
```

## Usage

```python
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

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

## Drone test runner

```
PYTHON_VERSION=3.7 drone exec
PYTHON_VERSION=3.6 drone exec
PYTHON_VERSION=3.5 drone exec
PYTHON_VERSION=2.7 drone exec
```

For more information about Drone, visit [Drone.io](https://drone.io/)


