bitcoin: use BTC-e instead of MtGox

This commit is contained in:
Ryan Hitchman 2014-01-30 11:42:54 -08:00
parent 36518e9f91
commit 726bf0dd4b
1 changed files with 4 additions and 11 deletions

View File

@ -3,14 +3,7 @@ from util import http, hook
@hook.command(autohelp=False)
def bitcoin(inp, say=None):
".bitcoin -- gets current exchange rate for bitcoins from mtgox"
data = http.get_json("https://data.mtgox.com/api/2/BTCUSD/money/ticker")
data = data['data']
ticker = {
'buy': data['buy']['display_short'],
'high': data['high']['display_short'],
'low': data['low']['display_short'],
'vol': data['vol']['display_short'],
}
say("Current: \x0307%(buy)s\x0f - High: \x0307%(high)s\x0f"
" - Low: \x0307%(low)s\x0f - Volume: %(vol)s" % ticker)
".bitcoin -- gets current exchange rate for bitcoins from BTC-e"
data = http.get_json("https://btc-e.com/api/2/btc_usd/ticker")
say("BTC/USD: \x0307{buy:.0f}\x0f - High: \x0307{high}\x0f"
" - Low: \x0307{low}\x0f - Volume: {vol_cur:.0f}".format(**data['ticker']))