A python wrapper for PokeAPI
- Free software: BSD license
- Documentation: http://pykemon.rtfd.org.
Nice and simple:
$ pip install pykemonEven simpler:
>>> import pykemon
>>> pykemon.get(pokemon='bulbasaur')
<Pokemon - Bulbasaur>
>>> p = pykemon.get(pokemon_id=1)
<Pokemon - Bulbasaur>
>>> pykemon.get(move_id=15)
<Move - cut>- Generate Python objects from PokeAPI resources.
- Human-friendly API