### Build distribution Source: https://github.com/dahlia/iso4217/blob/main/AGENTS.md Create source distribution and wheel distribution for the package. ```bash # Build distribution python setup.py sdist bdist_wheel ``` -------------------------------- ### Run tests Source: https://github.com/dahlia/iso4217/blob/main/AGENTS.md Execute the test suite for the iso4217 package. ```bash # Run tests python -m iso4217.test ``` -------------------------------- ### Run linter Source: https://github.com/dahlia/iso4217/blob/main/AGENTS.md Check code quality and style using flake8. ```bash # Run linter flake8 . ``` -------------------------------- ### Run tests across multiple Python versions Source: https://github.com/dahlia/iso4217/blob/main/AGENTS.md Utilize tox to execute tests against various Python environments. ```bash # Run tests across multiple Python versions tox ``` -------------------------------- ### Accessing Currency Data with iso4217 Source: https://github.com/dahlia/iso4217/blob/main/README.rst Import the Currency enum and access currency attributes like code, name, and exponent. Lowercase enumerants are also available. ```python from iso4217 import Currency Currency.USD Currency.USD.code Currency.USD.currency_name Currency.USD.exponent Currency.JPY Currency.JPY.currency_name Currency.JPY.exponent Currency('KRW') Currency.KRW is Currency('KRW') Currency.krw is Currency.KRW ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.