Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API hatası - 15-Advanced Python Modülleri/_exchange.py #5

Open
yasinerdem19 opened this issue Mar 5, 2022 · 1 comment
Open

API hatası - 15-Advanced Python Modülleri/_exchange.py #5

yasinerdem19 opened this issue Mar 5, 2022 · 1 comment

Comments

@yasinerdem19
Copy link

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))

@RamazzanErdogan
Copy link

apı_url=(f"http://api.exchangeratesapi.io/v1/latest?access_key={api_key}&format=1")
Yukarıdaki şekilde API LAYER sistesinde hesabına API'ye ulaşmak için verilen anahtar ile ulaşabilirsin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants