Skip to main content

Lightweight ISO 4217 currency package

Project description

python-iso4217: fast currency data package for Python


This python package automatically updates its own currency data using github actions and immediately release new version of package with updates. So it's super fast and at the same time always contains fresh data.

Installation

Pip

pip install python-iso4217

Poetry

poetry add python-iso4217

Usage

from iso4217 import find_currency, iter_currency

# Filters that could be applied:
#   * currency_name
#   * alphabetical_code
#   * entity
#   * decimal_places
#   * numeric_code
#   * withdrawal_date
# The filters correspond to attributes of `Currency` class

# accept arbitrary filters as key/value pairs
currency = find_currency(currency_name="usd")

# if currency was not found, the lib will immediately raise CurrencyNotFoundError
defunct_currency = find_currency(currency_name="abc123")

# You need generator to lazy iter currencies? Ok

for c in iter_currency():
# do something

Advanced

Work with pydantic

import inspect

from iso4217 import Currency as _Currency, find_currency
from pydantic import BaseModel, root_validator, StrictInt


class Currency(BaseModel, _Currency):
    __root__: StrictInt

    @root_validator(pre=False, skip_on_failure=True)
    def humanize(cls, values):
        currency_numeric_code: int = values.get("__root__")
        # inspect.getfullargspec(_Currency.__init__) will contain `self`, so we cut it off
        orig_currency_cls_dunder_init_arg_names = inspect.getfullargspec(_Currency.__init__).args[1:]
        currency = find_currency(numeric_code=currency_numeric_code)
        return {
            k: getattr(currency, k, None)
            for k in orig_currency_cls_dunder_init_arg_names
        }

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

python-iso4217-0.0.1.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

python_iso4217-0.0.1-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file python-iso4217-0.0.1.tar.gz.

File metadata

  • Download URL: python-iso4217-0.0.1.tar.gz
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for python-iso4217-0.0.1.tar.gz
Algorithm Hash digest
SHA256 6531fbdf8deb63ee9bd7a6f8bc21563ed463a837cc9104a276b303009a8c8d5e
MD5 03d26223d382f63ae155a02708f302a0
BLAKE2b-256 cb7cd80919dff82748937221fc21747ffd4c2115d8c3ef111d2bf2c5f107ce05

See more details on using hashes here.

File details

Details for the file python_iso4217-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for python_iso4217-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d510e0d2df01586dd172c2f5977741036cc49b502e31dbbac675a0ec674b38b5
MD5 41aaac447d9ab6c21eb422fc6878ae13
BLAKE2b-256 e1897442ba6b34a1dc9687dadfc7c14fdc7f8639551530251e546c2f2fcbbef2

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