openexchangerates.org Python3 API client
Project description
This is a simple __python3__ client implementation of https://openexchangerates.org web services.
Install
openexchangerates is avaiable on pypi repositories. Just simply install by using easy_install or pip:
# Remove the old one if installed $ pip uninstall openexchangerates # Install the Python3 version $ pip install openexchangerates3
Usage
First of all, you have to sign up the service for an API key by visiting https://openexchangerates.org
Then it is a matter of cake to start using the service:
>>> from openexchangerates import OpenExchangeRatesClient
>>> client = OpenExchangeRatesClient('<YOUR_API_KEY>')
>>> client.currencies()
{'AED': 'United Arab Emirates Dirham',
'AFN': 'Afghan Afghani',
'ALL': 'Albanian Lek',
'AMD': 'Armenian Dram',
'ANG': 'Netherlands Antillean Guilder',
'AOA': 'Angolan Kwanza',
'ARS': 'Argentine Peso',
'AUD': 'Australian Dollar',
...
>>> client.latest()
{'base': 'USD',
'disclaimer': '<disclaimer>',
'license': '<license>',
'rates': {'AED': 3.672701,
'AFN': 51.621833,
'ALL': 104.032,
'AMD': 406.489997,
'ANG': 1.7888,
'AOA': 95.936967,
'ARS': 4.995484,
'AUD': 0.966637,
...
You are also free to select base currency (Supported by non-free licenses):
>>> client.latest(base='GBP')
{'base': 'GBP',
'disclaimer': '<disclaimer>',
'license': '<license>',
'rates': {'AED': 3.672701,
'AFN': 51.621833,
'ALL': 104.032,
'AMD': 406.489997,
'ANG': 1.7888,
'AOA': 95.936967,
'ARS': 4.995484,
'AUD': 0.966637,
...
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 openexchangerates3-0.1.1.tar.gz.
File metadata
- Download URL: openexchangerates3-0.1.1.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
030c43a0ac4a79f0bbdbf3397f6f8eefba40ae66b111ac6a099357c511384602
|
|
| MD5 |
4b1233f65aa1ee4bdc27ebff64036519
|
|
| BLAKE2b-256 |
6888023009079ef287cdc0e64a3fb95299e81d72b726609d3c5fcf5438bb4c17
|