You are browsing as a guest. Sign up (or log in) to start making projects!

Pokédex CLI

  • 1 Devlogs
  • 1 Total hours

A command-line interface that supports retrieving information of Pokemon.

Open comments for this post

1h 16m 2s logged

Many of us have grown up watching Pokémon. It holds a special place in our childhood memories. To celebrate that memory, I’m building a REPL-based Pokédex CLI.

For those of you who aren’t familiar with REPL, it stands for read-eval-print loop. It is an interactive shell environment that continuously reads your input, evaluates the command, and prints the result right back to you.

So far, I’ve implemented two primary commands:

  1. Help: which displays the information and usage details for all available CLI commands.
  2. Exit: safely exits the CLI

Soon I will be integrating the official Pokedex API to fetch and display live data, stats, and entries for specific Pokemon

Many of us have grown up watching Pokémon. It holds a special place in our childhood memories. To celebrate that memory, I’m building a REPL-based Pokédex CLI.

For those of you who aren’t familiar with REPL, it stands for read-eval-print loop. It is an interactive shell environment that continuously reads your input, evaluates the command, and prints the result right back to you.

So far, I’ve implemented two primary commands:

  1. Help: which displays the information and usage details for all available CLI commands.
  2. Exit: safely exits the CLI

Soon I will be integrating the official Pokedex API to fetch and display live data, stats, and entries for specific Pokemon

Replying to @nightswamp

0
2

Followers

Loading…