Skip to content

Instantly share code, notes, and snippets.

@dp7k
Created April 2, 2015 23:57
Show Gist options
  • Select an option

  • Save dp7k/754e5bf8e1429c23d534 to your computer and use it in GitHub Desktop.

Select an option

Save dp7k/754e5bf8e1429c23d534 to your computer and use it in GitHub Desktop.
bitcoin exchange rate
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import requests, json
API_URL_BASE = 'https://api.bitcoinaverage.com/ticker/global/'
CURRENCY = 'EUR'
r = requests.get(API_URL_BASE + CURRENCY, verify=True)
j = r.json()
rate = j['last']
print(rate)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment