Metadata-Version: 2.1
Name: pokepy
Version: 0.4.0
Summary: A Python wrapper for PokeAPI
Home-page: https://github.com/pokeapi/pokepy
Author: Paul Hallett
Author-email: hello@phalt.co
License: BSD
Keywords: pokepy
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: beckett (==0.8.0)

===============================
Pokepy
===============================

.. image:: https://badge.fury.io/py/pokepy.png
    :target: http://badge.fury.io/py/pokepy

.. image:: https://circleci.com/gh/PokeAPI/pokepy.svg?style=svg
    :target: https://circleci.com/gh/PokeAPI/pokepy

A python wrapper for `PokeAPI <https://pokeapi.co>`_

* Free software: BSD license
* Documentation: http://pokepy.rtfd.org.


Installation
------------

Nice and simple:

.. code-block:: bash

    $ pip install pokepy


Usage
-----

Even simpler:

.. code-block:: python

    >>> import pokepy
    >>> client = pokepy.V2Client()
    >>> client.get_pokemon(1)[0]
    <Pokemon - Bulbasaur>


Features
--------

* Generate Python objects from PokeAPI resources.
* Human-friendly API




History
-------

0.4.0 (2018-10-11)
++++++++++++++++++

* Removed code from pre-beckett versions
* Removed V1 API support, as it is now deprecated
* Added some tweaks to the beckett package

0.3.0 (2017-10-19)
++++++++++++++++++

* V2 support added
* Added some missing V1 resources
* Removed files related to API 0.1

0.2.0 (2016-06-11)
++++++++++++++++++

* Beckett API Client framework added

0.1.2 (2014-1-3)
++++++++++++++++++

* Sprite attribute added to Pokemon class


0.1.1 (2013-12-24)
++++++++++++++++++

* Description attribute added to Pokemon class


0.1.0 (2013-12-23)
++++++++++++++++++

* First release on PyPI.
* All PokeAPI resources fully supported and represented in an object-oriented style
* Easy-to-use API: just one method!


