Metadata-Version: 2.0
Name: gw2api
Version: 1.1.4
Summary: Guild Wars 2 API
Home-page: https://github.com/hackedd/gw2api
Author: Paul Hooijenga
Author-email: paulhooijenga@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Games/Entertainment
Requires-Dist: requests
Requires-Dist: six

****************
Guild Wars 2 API
****************

gw2api is a Python library to interface with the `Guild Wars 2 API`_. It aims
to have an almost one-to-one mapping to the JSON API, with only some minor
differences.

Usage Example
-------------

.. code-block:: python

    import gw2api.v2

    for item in gw2api.v2.items.get(range(30684, 30705)):
        link = gw2api.encode_item_link(item["id"])
        print "%-26s %-9s %-10s %s" % (item["name"], item["rarity"],
                                       item["details"]["type"], link)

gw2api is available from the `Python Package Index`_ and is hosted on GitHub_.

.. _Guild Wars 2 API: http://wiki.guildwars2.com/wiki/API:Main
.. _Python Package Index: https://pypi.python.org/pypi/gw2api
.. _GitHub: https://github.com/hackedd/gw2api


