Metadata-Version: 2.1
Name: pokepy
Version: 0.5.2
Summary: A Python wrapper for PokéAPI (https://pokeapi.co)
Home-page: https://github.com/PokeAPI/pokepy
Author: Paul Hallett
Author-email: hello@phalt.co
License: BSD
Project-URL: Documentation, https://pokeapi.github.io/pokepy/
Keywords: pokepy PokéAPI
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
Description-Content-Type: text/markdown
Requires-Dist: beckett (==0.8.*)
Requires-Dist: fcache (==0.4.*)
Requires-Dist: requests (==2.20.*)

# Pokepy <img heigth=50 width=50 src="https://veekun.com/dex/media/pokemon/global-link/14.png">

[![pypi](https://img.shields.io/pypi/v/pokepy.svg "pypi package")](https://pypi.org/project/pokepy)
[![python versions](https://img.shields.io/pypi/pyversions/pokepy.svg "supported python versions")](https://pypi.org/project/pokepy)
[![build status](https://circleci.com/gh/PokeAPI/pokepy.svg?style=svg "build status")](https://circleci.com/gh/PokeAPI/pokepy)
[![coverage](https://codecov.io/gh/PokeAPI/pokepy/branch/master/graph/badge.svg "code coverage")](https://codecov.io/gh/PokeAPI/pokepy)
[![license](https://img.shields.io/pypi/l/pokepy.svg "license")](https://github.com/PokeAPI/pokepy/blob/master/LICENSE)

A python wrapper for [PokéAPI](https://pokeapi.co). (former [pykemon](https://github.com/PokeAPI/pokepy/tree/bb72105f4c5402aaa5d4fd2b9c142bf9b678b254))

Maintainer: [Kronopt](https://github.com/Kronopt)

# Installation
Nice and simple:

```
$ pip install pokepy
```

# Usage
Even simpler:

```python
>>> import pokepy
>>> client = pokepy.V2Client()
>>> client.get_pokemon(14)
[<Pokemon - Kakuna>]
```

# Documentation
For more information, check the documentation at https://pokeapi.github.io/pokepy

# Features

* Generate Python objects from PokéAPI resources
* Cache
* Human-friendly API


# History
### 0.5.2 (2019-03-01)
* Fixed bug that caused pokemon_encounters subresource to not be detected in LocationAreaResource
(thanks to [jachymb](https://github.com/jachymb))

### 0.5.1 (2019-02-16)
* New V2Client cache-related methods:
    * cache_info
    * cache_clear
    * cache_location

### 0.5.0 (2019-01-19)
* Pykemon is now Pokepy!
* Cache (disk- and memory-based)

### 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 PokéAPI resources fully supported and represented in an object-oriented style
* Easy-to-use API: just one method!


