dahlia / iso4217

ISO 4217 currency data package for Python

Home Page:https://pypi.org/project/iso4217/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iso4217: Currency data package for Python

image

image

This Python package contains ISO 4217 currency data, represented as enum module which was introduced in 3.4. Note that this works on Python 2.7 as well as 3.10, the latest version of Python, through enum34 package.

>>> from iso4217 import Currency >>> Currency.usd <Currency.usd: 'USD'> >>> Currency.usd.code 'USD' >>> Currency.usd.currency_name 'US Dollar' >>> Currency.usd.exponent # USD has cents 2 >>> Currency.jpy <Currency.jpy: 'JPY'> >>> Currency.jpy.currency_name 'Yen' >>> Currency.jpy.exponent # JPY has no minor units 0 >>> Currency('KRW') # Get by the code string <Currency.krw: 'KRW'> >>> Currency.krw is Currency('KRW') True

Written by Hong Minhee. Distributed under Public Domain.

About

ISO 4217 currency data package for Python

https://pypi.org/project/iso4217/


Languages

Language:Python 100.0%