Data Of 1025 Pokemons
dataset of pokemons with description, name of the pokemon from which they evolve
@kaggle.hamzacyberpatcher_data_of_1010_pokemons
dataset of pokemons with description, name of the pokemon from which they evolve
@kaggle.hamzacyberpatcher_data_of_1010_pokemons
This is a dataset of 1025 pokemons that I scraped from pokeapi.co using python. I made a pokedex in flask using this api ( hamzacyberpatcher.pythonanywhere.com ). This dataset contains the following data:
I have not included data about mega evolutions because I scraped this data for making a pokedex.
CREATE TABLE pokemons (
"id" BIGINT,
"name" VARCHAR,
"rank" VARCHAR,
"generation" VARCHAR,
"evolves_from" VARCHAR,
"type1" VARCHAR,
"type2" VARCHAR,
"hp" BIGINT,
"atk" BIGINT,
"def" BIGINT,
"spatk" BIGINT,
"spdef" BIGINT,
"speed" BIGINT,
"total" BIGINT,
"height" BIGINT,
"weight" BIGINT,
"abilities" VARCHAR,
"desc" VARCHAR
);Anyone who has the link will be able to view this.