An Open Exchange Rate Client
Project description
BOXR is a Better Open Exchange Rate client – at least better than I was able to find because this one is maintained.
Install
$ pip install boxr
Usage
Boxr maps 1:1 with the OXR api documented here: https://docs.openexchangerates.org/docs/. This means https://openexchangerates.org/api/latest.json maps to boxr.latest(), and https://openexchangerates.org/api/historical/:date.json maps to boxr.historical(date).
In short
Routes map to function names, e.g. /latest.json -> latest()
Path params map to function arguments, e.g. /historical/:date.json -> historical(date)
Query params map to keyword arguments, e.g. /time-series.json?start=2017-01-01&end=2017-01-05 -> time_series(start="2017-01-01", end='2017-01-05')
Also note that all endpoints return requests response objects, so things like validation of request or formatting the response can be done by interacting with the response object.
Example usage
from boxr import Boxr
boxr = Boxr(app_id='your_app_id')
# All calls return a `requests` Response object
latest = boxr.latest()
# And thus we get the json
result = latest.json()
Contributing
I would like this package to always be up to date with the OXR http API. If this is someday not the case please open a Pull Request or open an issue about the noncompliance.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file boxr-1.0.1.tar.gz
.
File metadata
- Download URL: boxr-1.0.1.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6934989b35d1103ae3756fae1640dcd85d25afedca58523a99b59b65bbbfe97e |
|
MD5 | 0619a0ce0a291046d605b6edf9b648ab |
|
BLAKE2b-256 | e320ededa82afac011965fe1b11815ff11dd8fecd1081c57dcd31e22c48c33a2 |