Giter Site home page Giter Site logo

peterhellberg / fixer Goto Github PK

View Code? Open in Web Editor NEW
18.0 3.0 6.0 20 KB

Go client for the Foreign exchange rates and currency conversion API ๐Ÿ’ฐ

Home Page: http://fixer.io/

License: MIT License

Go 100.00%
go client currencies foreign-exchange-rates

fixer's Introduction

fixer

Build Status Go Report Card GoDoc License MIT

Go client for Fixer.io (Foreign exchange rates and currency conversion API)

You need to register for a free access key if using the default Fixer API.

The default client loads its access key from the environment variable FIXER_ACCESS_KEY

Installation

go get -u github.com/peterhellberg/fixer

Usage examples

SEK quoted against USD and EUR

package main

import (
	"context"
	"encoding/json"
	"os"

	"github.com/peterhellberg/fixer"
)

func main() {
	resp, err := fixer.Latest(context.Background(),
		fixer.Base(fixer.SEK),
		fixer.Symbols(
			fixer.USD,
			fixer.EUR,
		),
	)
	if err != nil {
		return
	}

	encode(resp)
}

func encode(v interface{}) {
	enc := json.NewEncoder(os.Stdout)
	enc.SetEscapeHTML(false)
	enc.SetIndent("", " ")
	enc.Encode(v)
}
{
 "base": "SEK",
 "date": "2017-05-24T00:00:00Z",
 "rates": {
  "EUR": 0.10265,
  "USD": 0.1149
 },
 "links": {
  "base": "https://api.fixer.io",
  "self": "https://api.fixer.io/latest?base=SEK&symbols=EUR%2CUSD"
 }
}

Using the Foreign exchange rates API instead

package main

import (
	"context"
	"encoding/json"
	"os"
	"time"

	"github.com/peterhellberg/fixer"
)

func main() {
	f := fixer.ExratesClient

	resp, err := f.At(context.Background(), time.Now(),
		fixer.Base(fixer.GBP),
		fixer.Symbols(
			fixer.SEK,
			fixer.NOK,
		),
	)
	if err != nil {
		return
	}

	encode(resp)
}

func encode(v interface{}) {
	enc := json.NewEncoder(os.Stdout)
	enc.SetEscapeHTML(false)
	enc.SetIndent("", " ")
	enc.Encode(v)
}
{
 "base": "GBP",
 "date": "2020-04-17T00:00:00Z",
 "rates": {
  "NOK": 12.9739704293,
  "SEK": 12.4799374554
 },
 "links": {
  "base": "https://api.exchangeratesapi.io",
  "self": "https://api.exchangeratesapi.io/2020-04-18?base=GBP&symbols=NOK%2CSEK"
 }
}

API documentation

https://fixer.io/documentation

License (MIT)

Copyright (c) 2017-2020 Peter Hellberg

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

fixer's People

Contributors

peterhellberg avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

fixer's Issues

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.