/pokesummary

An easy-to-use, informative command line interface (CLI) for accessing Pokémon summaries.

Primary LanguagePythonMIT LicenseMIT

Pokésummary

In the heat of a Pokémon battle, Pokésummary lets you quickly get the information you need!

Pokésummary is an easy-to-use, informative command line interface (CLI) for displaying Pokémon height, weight, types, base stats, and type defenses. It works completely offline, opting to use local datasets instead of APIs. It requires no third-party libraries.

image

Usage

usage: pokesummary [-h] [-i] [-s] [-v] [pokemon [pokemon ...]]

Get summaries for a Pokémon or multiple Pokémon.

positional arguments:
  pokemon              the Pokémon to look up

optional arguments:
  -h, --help           show this help message and exit
  -i, --interactive    run interactively
  -s, --show-examples  show example uses of the program
  -v, --version        show program's version number and exit

Installation

Requirements

  • Python 3.7+
  • A terminal supporting ANSI escape codes (most Linux and macOS terminals, see here for Windows)

Install from PyPI

  1. Install using pip
pip install pokesummary

Install from Source Code

  1. Clone or download the repository
  2. Install using pip
pip3 install .

Uninstall

  1. Uninstall using pip
pip3 uninstall pokesummary

Acknowledgements