forked from mouredev/retos-programacion-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68048f3
commit 1478dea
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
""" | ||
/* | ||
* 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 | ||
import json | ||
|
||
URL = "https://api.vatcomply.com/currencies" | ||
|
||
response = requests.get(URL) | ||
|
||
currencies = json.loads(response.text) | ||
|
||
print("List of currencies: \n") | ||
|
||
for key, values in currencies.items(): | ||
print(key) | ||
print("NAME: " + values['name']) | ||
print("SYMBOL: " + values['symbol'] + "\n") |