Skip to main content

Django currencies with historical exchange rates

Project description

Django currencies with historical exchange rates

This is a fairly minimal Django app that renders amounts of currencies, stores historical exchange rates in the database, and performs currency conversion.

When working with any historical multi-currency data, one often needs to be able to perform exchange rate calculations with historical rates. This allows the conversion to be accurately reproduced in the future.

Exchange Rates are stored in a simple database table, with 1 row per rate per date. Conversions can be done directly, or across a base currency using 2 rates.

Formatting is defined by iso4217. Exchange Rate data can be sourced from:

Installation

  1. Install django-historical-currencies in your Python environment.
  2. Add historical_currencies to INSTALLED_APPS in your settings.py.
  3. Import yesterday's exchange rates to get started: manage.py import_ecb_exchangerates --daily.
  4. Configure a periodic task (e.g. cron, systemd timer, celery beat) to import daily exchange rates.

Settings

  • MAX_EXCHANGE_RATE_AGE: How many days old can an exchange rate be treated as current?

Optional settings, only required for OpenExchangeRates.org import:

  • OPEN_EXCHANGE_RATES_APP_ID: OpenExchangeRates App ID.
  • OPEN_EXCHANGE_RATES_BASE_CURRENCY: Base currency.

Usage

In code, amounts can be converted using the historical_currencies.exchange.exchange() method.

In templates, this module represents financial amounts as tuple of (Decimal, str(currency-code)). The recommended approach is to add properties to your Django models to return this tuple for amounts.

In a template the amount can be displayed or converted:

{% load currency_format %}

Assuming my_amount = (Decimal(10), 'USD')
Display:
{{ my_amount|currency }}
-> 10.00 USD

Exchange at the latest rate:
{{ my_amount|exchange:"EUR" }}
-> 9.06 EUR

Currency Selectors:

There are two template tags to help render currency selectors. A high-level one that renders HTML:

{% load currency_choices %}

<select>
  {% currency_choices_options selected="USD" %}
</select>

And a low-level one that returns a list of currencies:

{% load currency_choices %}

<select>
  {% currency_choices_list as currency_choices %}
  {% for code, name in currency_choices %}
    <option value="{{ code }}">{{ name }}</option>
  {% endfor %}
</select>

License

This Django app is available under the terms of the ISC license, see LICENSE.

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

django-historical-currencies-0.0.2.tar.gz (11.4 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-historical-currencies-0.0.2.tar.gz.

File metadata

File hashes

Hashes for django-historical-currencies-0.0.2.tar.gz
Algorithm Hash digest
SHA256 ea2d826b08a97d9f1dc17426b00caed793daab360519858cd4f2a78f36f17d39
MD5 fa6a182c5cbbf170c4e8d44fe4f98e2c
BLAKE2b-256 6cb87dce974e450716902fb1fa6468738c1b2157f576d9b24cc715c43c78fd00

See more details on using hashes here.

File details

Details for the file django_historical_currencies-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_historical_currencies-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c35d19911fa0d647997160bd7358e9cf8c6609aa6e30cb30295307773b9b33be
MD5 b47defc8740c2cbb4f0b46ab8245432f
BLAKE2b-256 fc6e65fb7070c1e5abb5ea300ce77701b13bf7b9e8d4c2fc86a14079f6244b01

See more details on using hashes here.

Supported by

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