Python library for Open Exchange Rates API.
Install dependency
$ pip install coinoxr
Install dependency from source code
$ python setup.py install
- Python 3.7+
import coinoxr
coinoxr.app_id = "c01ed21da6424fd3b0ac68f9e63a3d29"
coinoxr.Latest().get(base="EUR")
Run all the tests for every environment:
$ make test
The code can be formatted with black:
$ make fmt