Code Monkey home page Code Monkey logo

openexchangerates's Introduction

openexchangerates

This is a simple python client implementation of https://openexchangerates.org web services.

Install

openexchangerates is avaiable on pypi repositories. Just simply install by using easy_install or pip:

$ pip install openexchangerates

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,
    ...

openexchangerates's People

Contributors

baratrion avatar kadirpekel avatar kyso avatar sprt avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.