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(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.3.tar.gz
(12.9 kB
view details)
Built Distribution
File details
Details for the file python-iso4217-0.0.3.tar.gz
.
File metadata
- Download URL: python-iso4217-0.0.3.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.8.10 Linux/5.8.0-59-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f943a77e631c0fae4557aa873df0fd91569983604ae9dcb17c7761c97f308b74 |
|
MD5 | 90cda58794576c5bb75cab408c7c2f49 |
|
BLAKE2b-256 | fbf329b06f0d067076bbe2c5b23ac3bdb4228dc134d1b7cc76cf3b97e2f577ce |
File details
Details for the file python_iso4217-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: python_iso4217-0.0.3-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.8.10 Linux/5.8.0-59-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34f9830acd8bf4dbab096e1ff936cc8ee3bc30dc7fb78d8ed944a3d22d54020a |
|
MD5 | eb81b6f6ac83df65a9437dade227c957 |
|
BLAKE2b-256 | 73af76780ebd9ae91db8241fab50a21962e8d7e34775fe3972ee8bcf7e7fc5b2 |