Skip to main content

A lightweight Python package for retrieving and using foreign exchange rates and convert currencies

Project description

Python Currency Exchange Library

Currency Exchange Rate Library is a lightweight Python package for retrieving and using foreign exchange rates. It leverages the Exchange API by Fawaz Ahmed to provide up-to-date and historical exchange rates in a simple, developer-friendly manner.

Features:

  • Real-Time Exchange Rates: Fetch the latest exchange rates for any supported currency pair.
  • Historical Data: Retrieve exchange rates for any given date.
  • Easy Integration: Simple and intuitive API for seamless integration.
  • Case-insensitive currency codes support
  • Developed with Asynchronous approach with AsyncIO and AIOHTTP
  • High Accuracy: Powered by the reliable Exchange API.
  • Open Source: Licensed under MIT for community contributions and customizations.

Installation

pip3 install pyxrate

Dependencies

  • Python <4.0, >=3.11
  • aiohttp

Quick Start

from currency_exchange import converter

# Initialize the library
currency_client = converter.CurrencyConverter()

# Get the supported currency rates
all_currencies = currency_client.currencies()
print(f"All supported currencies: {all_currencies}")

# Check support of specific currency rate
# NOTE: currency codes are case-insensitive
currency = currency_client.currencies('uah')
print(f"Currency name: {currency}")

currency = currency_client.currencies('UAH')  
print(f"Currency name: {currency}")

# Get exchange rate between two currencies
# NOTE: currency codes are case-insensitive
rate = currency_client.get_exchange_rate('USD', 'UAH')
print(f"USD to UAH rate: {rate}")

rate = currency_client.get_exchange_rate('usd', 'uah')
print(f"USD to UAH rate: {rate}")

# Get historical exchange rate between two currencies for particular date
# NOTE: currency codes are case-insensitive
currency_client.currency_date = '2024-11-20'
historical_rate = currency_client.get_exchange_rate('USD', 'UAH')
print(f"USD to UAH rate at {currency_client.currency_date}: {historical_rate}")

# Convert currencies based on latest rates
# NOTE: currency codes are case-insensitive
currency_convert = currency_client.convert(2400, 'usd', 'uah')
print(f"Convert USD to UAH: {currency_convert}")

# Convert currencies by rates based on historical data
# NOTE: currency codes are case-insensitive
currency_client.currency_date = '2024-11-20'
currency_convert = currency_client.convert(2400, 'usd', 'uah')
print(f"Converting USD to UAH at {currency_client.currency_date} date: {currency_convert}")

Debug mode

from currency_exchange import converter

# Initialize the library
currency_client = converter.CurrencyConverter()

# Set log level to debug
currency_client.log_level = "DEBUG"

# Convert currencies by rates based on historical data
currency_client.currency_date = '2024-11-20'
currency_convert = currency_client.convert(2400, 'usd', 'uah')
print(f"Converting USD to UAH at {currency_client.currency_date} date: {currency_convert}")

Known Issues and Limitations

  • Historical Data Availability: The Exchange API provides historical exchange rate data only up to March 2, 2024. Any requests for dates beyond this range may result in throwing exceptions expected. So, within that, please be notified that all exchange operations by using this lib in terms of historical data limited by date of March 2, 2024

Acknowledgments

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyxrate-0.2.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyxrate-0.2-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

File details

Details for the file pyxrate-0.2.tar.gz.

File metadata

  • Download URL: pyxrate-0.2.tar.gz
  • Upload date:
  • Size: 6.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.10 Linux/6.5.0-1025-azure

File hashes

Hashes for pyxrate-0.2.tar.gz
Algorithm Hash digest
SHA256 4899a4a4be15c0b81bccde6fc71c2ed7a2d4448f1518be7e93b1f2066d936b14
MD5 a667a3d865b799918fa322d47f3cb77d
BLAKE2b-256 4b8365251aa7eb733ff5cbb90d025f18b902f1208014cb2a601382bf6e4a8a71

See more details on using hashes here.

File details

Details for the file pyxrate-0.2-py3-none-any.whl.

File metadata

  • Download URL: pyxrate-0.2-py3-none-any.whl
  • Upload date:
  • Size: 9.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.10 Linux/6.5.0-1025-azure

File hashes

Hashes for pyxrate-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 16d2cfb84abb0955651b10a729a11489a18b477a802eec2e07478b631612c59b
MD5 263dd719873614291a00fa0100ed7dda
BLAKE2b-256 55a36117b93b811b0b9d5fc67cf8ffc450a5e0430a0083438b1cd68de3bafea2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page