Skip to main content

Librería para buscar divisas conforme listado ISO 4217. Last update: 2022-03-29

Project description

Package currency_iso4217 is a self-contained module that allows search currency by code, country or currency definition returning the corresponding active currency information.

## Pre requirements

Python >=3.6

## Installation

pip install currency-iso4217

## Usage

>>> from currency_iso4217 import search_by_code
>>> search_by_code('CLP')
>>> [{'position': 42, 'code': 'CLP', 'country': 'Chile', 'currency': 'Peso chileno', 'decimals': '0'}]
>>> from currency_iso4217 import search_by_country
>>> search_by_country('Chile')
>>> [{'position': 41, 'code': 'CLP', 'country': 'Chile', 'currency': 'Unidad de fomento', 'decimals': '4'}, {'position': 42, 'code': 'CLP', 'country': 'Chile', 'currency': 'Peso chileno', 'decimals': '0'}]
>>> from currency_iso4217 import search_by_currency
>>> search_by_currency('Peso chileno')
>>> [{'position': 42, 'code': 'CLP', 'country': 'Chile', 'currency': 'Peso chileno', 'decimals': '0'}]
>>> from currency_iso4217 import search_decimals
>>> search_decimals('USD')
>>> 2
>>> from currency_iso4217 import show_list
>>> show_list()
>>> [...]

Written by Marcelo Daniel Iacobucci. Distributed under Public Domain.

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

currency_iso4217-0.12.0.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

currency_iso4217-0.12.0-py3-none-any.whl (10.5 kB view hashes)

Uploaded Python 3

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