arnavb/pypokedex

gen XI support

Closed this issue · 1 comments

Is support for pokemon s/v in the works?

arnavb commented

Hey @turtle72, looks like PokeAPI has support for Gen 9 now (and so does this library by extension); see this example snippet:

import pypokedex

p = pypokedex.get(name="Sprigatito")

print(p.base_stats)
# >>> BaseStats(hp=40, attack=61, defense=54, sp_atk=45, sp_def=45, speed=65)