Getting currencies and differencies from CBAR
Project description
# Getting currencies and differencies from CBAR
- ## How to install
- Install pip package
` pip install Django-cbar-currency `
- Configure directory for file
In settings.py file set a directory ` CBAR_CURRENCY_ROOT = os.path.join(BASE_DIR, 'media', 'cbar') `
- ## How to import
` from cbar_currency import Currency `
- ## Functions
- Currency.cron_script()
This function gets currency list with their values, differences and right them to file
- Currency.get_list()
This function reads currency file and returns all currencies with their values and differencies as list
- Currency.get_specific_currencies(currencyList)
This function returns specific currencies list which you give You should give currency names as list, for example [‘USD’, ‘EUR’, ‘RUB’]
- Currency.get_currencies_by_priority(currencyList)
This function returns all currencies list but currencies which you give will stay at the top of the list You should give currency names as list, for example [‘USD’, ‘EUR’, ‘RUB’]
- Currency.get_list_from_cbar(date)
This function returns all currencies list without differencies for the specific date
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.