Skip to content

Commit

Permalink
Reto mouredev#10 - python
Browse files Browse the repository at this point in the history
  • Loading branch information
nlarrea committed Mar 6, 2023
1 parent 30954db commit f1e5eff
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Retos/Reto #10 - LA API [Media]/python/nlarrea.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""
* Llamar a una API es una de las tareas más comunes en programación.
*
* Implementa una llamada HTTP a una API (la que tú quieras) y muestra su
* resultado a través de la terminal. Por ejemplo: Pokémon, Marvel...
*
* Aquí tienes un listado de posibles APIs:
* https://github.com/public-apis/public-apis
"""

import requests # pip install requests
import pprint # para ver mejor los datos

pokemon_name = input("Enter a Pokemon name: ")
r = requests.get(f"https://pokeapi.co/api/v2/pokemon/{pokemon_name.lower()}")

pprint.pprint(r.json())

0 comments on commit f1e5eff

Please sign in to comment.