Skip to main content

Simple library to get information about pokemon

Project description

PokePoke

The PokeAPI is a RESTful API that serves as a comprehensive database for Pokémon-related data. It offers a wide range of information about Pokémon species, their abilities, moves, types, evolutions, and more. By providing endpoints for various queries, such as retrieving details about specific Pokémon or abilities, the PokeAPI allows developers to access and utilize Pokémon-related data in their applications. It serves as a valuable resource for enthusiasts, developers, and researchers interested in integrating Pokémon-related information into their projects.

API

Python Basic API wrapper

  https://pokeapi.co/

Installation

Use the package manager pip to install foobar.

pip install pokepoke

Usage

from pokemon import pokeball

def main():
    poke_api = pokeball()

    # Meminta pengguna untuk memasukkan nama Pokémon
    pokemon_name = input("Masukkan nama Pokémon: ")
    pokemon_info = poke_api.get_pokemon_info(pokemon_name)
    if pokemon_info:
        print(f"Info untuk {pokemon_name.capitalize()}:")
        print(f"Berat: {pokemon_info['weight']}")
        print(f"Kemampuan: {', '.join([ability['ability']['name'] for ability in pokemon_info['abilities']])}")
    else:
        print("Pokémon tidak ditemukan.")

if __name__ == "__main__":
    main()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PokePoke-0.0.1.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

PokePoke-0.0.1-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page