forked from tdwojak/Python2017
task03 (labs03) done
This commit is contained in:
parent
4d960a7cc0
commit
ff73957b3c
19
labs03/task3.py
Normal file
19
labs03/task3.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
""""**ćwiczenie 3**
|
||||||
|
Strona ``https://api.fixer.io/latest`` udostępnia kursy różnych walut w stosunku do euro. Napisz skrypt, który:
|
||||||
|
* pobierze zawartość JSONa. Wykorzystaj bibliotekę ``requests`` (http://docs.python-requests.org/en/master/).
|
||||||
|
* korzystając z biblioteki ``json`` przekształć go do obiketu typu JSON.
|
||||||
|
* Wyświetl wartość kursu EUR do PLN."""
|
||||||
|
|
||||||
|
import requests
|
||||||
|
|
||||||
|
url = 'https://api.fixer.io/latest'
|
||||||
|
|
||||||
|
response = requests.get(url)
|
||||||
|
|
||||||
|
content = response.json()
|
||||||
|
|
||||||
|
rates = content['rates']
|
||||||
|
|
||||||
|
for key , value in rates.items():
|
||||||
|
if key == 'PLN':
|
||||||
|
print (value)
|
Loading…
Reference in New Issue
Block a user