You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exchangeratesapi.io sitesi artık access_key talep ediyor. Kodu çalıştırmak için ücretsiz plan ile üye olunduğunda ise HTML desteklenmiyor hatası veriyor.
exchangeratesapi.io sitesi artık access_key talep ediyor. Kodu çalıştırmak için ücretsiz plan ile üye olunduğunda ise HTML desteklenmiyor hatası veriyor.
import requests
import json
api_url = "https://api.exchangeratesapi.io/latest?base="
bozulan_doviz = input("bozulan döviz türü: ")
alinan_doviz = input("alınan döviz türü: ")
miktar = int(input(f"Ne kadar {bozulan_doviz} bozdurmak istiyorsunuz: "))
result = requests.get(api_url+bozulan_doviz)
result = json.loads(result.text)
print("1 {0} = {1} {2}".format(bozulan_doviz, result["rates"][alinan_doviz], alinan_doviz))
print("{0} {1} = {2} {3}".format(miktar, bozulan_doviz, miktar * result["rates"][alinan_doviz],alinan_doviz))
The text was updated successfully, but these errors were encountered: