Unnofficial Python wrapper for the unite-db.com REST API.
Introduction unite-db is a website dedicated to maintaining a database on various stats in the game Pokemon Unite including stats for Pokemon, Battle Items and Held Items. This wrapper provides a simple, Pythonic interface to those stats via a REST API, with automatic result caching. Please be warned that this is an unofficial wrapper and the REST API is a private one, so please do not abuse it. If you are publishing any of the data collected with this API, please give credit to unite-db . They spend many hours collecting this data. Installation The package is installable via pip . pip install py-unite-db Usage Import the UniteDb object: from py_unite_db import UniteDb unite_db = UniteDb () Let's get the names of all supporter Pokemon: >>> [ pokemon . name for pokemon in unite_db . pokemon if pokemon . role == "Supporter" ] [ 'Blissey' , 'Eldegoss' , 'Mr.Mime' , 'Wigglytuff' ] Contributing This project uses pdm . $