Python Currency Converter

PHOTO EMBED

Tue Aug 08 2023 07:57:17 GMT+0000 (Coordinated Universal Time)

Saved by @martechdev #python #currencyconverter #exchangeratesapi #currencyapi

import requests
url = "https://api.currencyapi.com/v3/latest"
headers = {
    'apikey': 'YOUR-API-KEY'
}
response = requests.request("GET", url, headers=headers)
print(response.text
      
content_copyCOPY

This snippet was copied from the [currencyapi.com](https://currencyapi.com) documentation. For Python, they specifically provide a snippet for the Python SDK, as well as a snippet using a standard HTTP client.
https://currencyapi.com/docs/examples/python-currency-converter