Metadata-Version: 1.0
Name: pykemon
Version: 0.1.0
Summary: A Python wrapper for PokeAPI
Home-page: https://github.com/phalt/pykemon
Author: Paul Hallett
Author-email: hello@phalt.co
License: BSD
Description: ===============================
        Pykemon
        ===============================
        
        .. image:: https://badge.fury.io/py/pykemon.png
            :target: http://badge.fury.io/py/pykemon
        
        .. image:: https://travis-ci.org/phalt/pykemon.png?branch=master
                :target: https://travis-ci.org/phalt/pykemon
        
        A python wrapper for `PokeAPI <http://pokeapi.co>`_
        
        * Free software: BSD license
        * Documentation: http://pykemon.rtfd.org.
        
        
        Installation
        ------------
        
        Nice and simple:
        
        .. code-block:: bash
        
            $ pip install pykemon
        
        
        Usage
        -----
        
        Even simpler:
        
        .. code-block:: python
        
            >>> import pykemon
            >>> pykemon.get(pokemon='bulbasaur')
            <Pokemon - Bulbasaur>
            >>> p = pykemon.get(pokemon_id=1)
            <Pokemon - Bulbasaur>
            >>> pykemon.get(move_id=15)
            <Move - cut>
        
        
        Features
        --------
        
        * Generate Python objects from PokeAPI resources.
        
        * Human-friendly API
        
        
        
        
        History
        -------
        
        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!
        
Keywords: pykemon
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
