A Python script that connects to the PokéAPI to fetch and display data about any Pokémon. This project demonstrates how to use the requests library to handle API calls and JSON data.
- The user enters a Pokémon name (e.g., "Pikachu").
- The script sends a GET request to the PokéAPI.
- If found, it displays the Pokémon's ID, Height, and Weight.
- If not found, it handles the error gracefully.
- Python 3
- Requests Library (for HTTP calls)
- PokéAPI (Public Data Source)
- Install the required library:
pip install -r requirements.txt