Giter Site home page Giter Site logo

sam-ghosh / django-currencies Goto Github PK

View Code? Open in Web Editor NEW

This project forked from panosl/django-currencies

0.0 0.0 0.0 258 KB

django-currencies allows you to define different currencies, and includes template tags/filters to allow easy conversion between them.

Home Page: http://pypi.python.org/pypi/django-currencies

License: BSD 3-Clause "New" or "Revised" License

Python 97.75% HTML 2.25%

django-currencies's Introduction

django-currencies

image

image

django-currencies allows you to define different currencies, and includes template tags/filters to allow easy conversion between them.

For more details, see the documentation at Read The Docs.

Authored by Panos Laganakos, and some great contributors.

Installation

  1. Either clone this repository into your project, or install with pip:

    pip install django-currencies
  2. You'll need to add currencies to INSTALLED_APPS in your project's settings file:

    import django
    
    INSTALLED_APPS += (
        'currencies',
    )
    
    if django.VERSION < (1, 7):
        INSTALLED_APPS += (
            'south',
        )
  3. Either have the currencies.context_processors.currencies processor:

    TEMPLATE_CONTEXT_PROCESSORS += (
        'django.core.context_processors.request',  # must be enabled
        'currencies.context_processors.currencies',
    )
  4. Or use the template tag currency_context:

    {% load currency %}
    {% currency_context %}
  5. Update your urls.py file :

    urlpatterns += patterns('',
        url(r'^currencies/', include('currencies.urls')),
    )

Then run ./manage.py migrate to create the required database tables

Upgrading from 0.3.3

Upgrading from 0.3.3 is likely to cause problems trying to apply a migration when the tables already exist. In this case a fake migration needs to be applied:

./manage.py migrate currencies 0001 --fake

Configuration

django-currencies has built-in integration with openexchangerates.org, Yahoo Finance and Currency ISO.

Management Commands

You can use the management commands currencies and updatecurrencies to maintain the currencies in the database. The former will import any currencies that are defined on the selected source into the database. This includes information like the currency code, name, symbol, and any other info provided. The latter will update all the database currency rates from the source. Any currency missing on the source will be untouched.

You can selectively import currencies, for example the commands below will import USD and EUR currencies only, or use a variable from the settings that points to an iterable respectively:

./manage.py currencies --import=USD --import=EUR
./manage.py currencies -i SHOP_CURRENCIES

The command automatically looks for variables CURRENCIES or SHOP_CURRENCIES in settings if -i is not specified. For more information on the additional switches --force and --verbosity try ./manage.py help currencies.

updatecurrencies can automatically change the base rate of the imported exchange rates by specifying the --base switch like so:

./manage.py updatecurrencies oxr --base=USD
./manage.py updatecurrencies yahoo -b SHOP_DEFAULT_CURRENCY

The command automatically looks for variables CURRENCIES_BASE or SHOP_DEFAULT_CURRENCY in settings if -b is not specified.

OpenExchangeRates

This is the default source or select it specifically using oxr as positional argument to either command.

You will need to specify your API key in your settings file:

OPENEXCHANGERATES_APP_ID = "c2b2efcb306e075d9c2f2d0b614119ea"

Requirements: requests (python3-compatible fork of OpenExchangeRatesClient is integrated due to abandoned project)

Yahoo Finance

Attention

Yahoo integration is now deprecated due to withdrawal of the service around 6 Feb 2018 due to purchase by Verizon. The cached currency json file will continue to be available through the currencies command however.

Select this source by specifying yahoo as positional argument.

Requirements: BeautifulSoup4 and requests

Currency ISO

Select this source by specifying iso as positional argument.

Requirements: requests

Integration Live Feeds
Currencies Rates Symbols Other Info
=========== ========== ============= ========== ==========

oxr

✅ ✅ ✅ *

yahoo

✅ ✘ ✅ ✅

iso

✅ ✅

* Symbols are imported from the file currencies.json because it is not
supported by the service. Other info includes ISO4217 number and exponent,
country and city names, and alternative currency names.

Usage

First of all, load the currency in every template where you want to use it:

{% load currency %}

Use:

{% change_currency [price] [currency_code] %}

for example:

{% change_currency product.price "USD" %}

<!-- or if you have the ``currencies.context_processors.currencies`` available -->
{% change_currency product.price CURRENCY.code %}

or use the filter:

{{ [price]|currency:[currency_code] }}

for example:

{{ product.price|currency:"USD" }}

or set the CURRENCY_CODE context variable with a POST to the included view:

{% url 'currencies_set_currency' [currency_code] %}

or use the template tag currency_context:

{% currency_context %}

which gives the three context variables: CURRENCIES, CURRENCY_CODE and CURRENCY.

Template

Included is a template for a Bootstrap 3 & fontawesome compatible navbar currency chooser. The navbar item will display if there are more than 1 active currencies. There is a navbar parameter dropdown_extra_class which is used to supply extra classes to the dropdown:

{% block navbar-nav %}
    ...
    <ul class="nav navbar-nav navbar-right">
        ...
        {% with dropdown_extra_class="collapsed-nav" %}
        {% include "currencies/navbar/currency-chooser-bs3fa.html" %}
        {% endwith %}

Attention

The currency choice may not be reflected on the navbar if your view is not re-rendered. This may be the case if you are viewing a default page in Django CMS for example. This is due to the context processor not being triggered because the RequestContext is not re-generated.

License

django-currencies is released under the BSD license.

django-currencies's People

Contributors

racitup avatar panosl avatar bashu avatar einarf avatar bmihelac avatar dhendo avatar pasevin avatar asucrews avatar strycore avatar ronanboiteau avatar jkinathan avatar ydaniv avatar cxong avatar davej avatar lalatgithub avatar mythrinagaraju avatar thomastu avatar ipablo avatar kaelweb avatar noxan avatar stelzzz avatar zhangziang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.