Browse Source

Add JPY exchange rate (#4016)

master
脇山P 8 years ago committed by ghost43
parent
commit
122cb08dc6
  1. 11
      lib/currencies.json
  2. 20
      lib/exchange_rate.py

11
lib/currencies.json

@ -798,5 +798,14 @@
"RUB", "RUB",
"USD" "USD"
], ],
"itBit": [] "itBit": [],
"Bitbank": [
"JPY"
],
"BitFlyer": [
"JPY"
],
"Zaif": [
"JPY"
]
} }

20
lib/exchange_rate.py

@ -160,6 +160,20 @@ class BitcoinVenezuela(ExchangeBase):
"/historical/index.php?coin=BTC")[ccy +'_BTC'] "/historical/index.php?coin=BTC")[ccy +'_BTC']
class Bitbank(ExchangeBase):
def get_rates(self, ccy):
json = self.get_json('public.bitbank.cc', '/btc_jpy/ticker')
return {'JPY': Decimal(json['data']['last'])}
class BitFlyer(ExchangeBase):
def get_rates(self, ccy):
json = self.get_json('bitflyer.jp', '/api/echo/price')
return {'JPY': Decimal(json['mid'])}
class Bitmarket(ExchangeBase): class Bitmarket(ExchangeBase):
def get_rates(self, ccy): def get_rates(self, ccy):
@ -350,6 +364,12 @@ class Winkdex(ExchangeBase):
for h in history]) for h in history])
class Zaif(ExchangeBase):
def get_rates(self, ccy):
json = self.get_json('api.zaif.jp', '/api/1/last_price/btc_jpy')
return {'JPY': Decimal(json['last_price'])}
def dictinvert(d): def dictinvert(d):
inv = {} inv = {}
for k, vlist in d.items(): for k, vlist in d.items():

Loading…
Cancel
Save