Skip to content

luisfmcalado/coinoxr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coinoxr - Open Exchange Rates

Build Status Coverage Status

Python library for Open Exchange Rates API.

Installation

Install dependency

$ pip install coinoxr

Install dependency from source code

$ python setup.py install

Requirements

  • Python 3.7+

Usage

import coinoxr
coinoxr.app_id = "c01ed21da6424fd3b0ac68f9e63a3d29"

coinoxr.Latest().get(base="EUR")

Development

Run all the tests for every environment:

$ make test

The code can be formatted with black:

$ make fmt