exchange_rate: add Bylls BTC/CAD rates

This commit is contained in:
Francis Pouliot 2019-01-17 00:51:15 +01:00 committed by SomberNight
parent bdb6d65cf7
commit a9c13d6641
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9
2 changed files with 10 additions and 0 deletions

View file

@ -386,6 +386,9 @@
"TWD",
"USD"
],
"Bylls": [
"CAD"
],
"CoinCap": [
"USD"
],

View file

@ -238,6 +238,13 @@ class BlockchainInfo(ExchangeBase):
return dict([(r, Decimal(json[r]['15m'])) for r in json])
class Bylls(ExchangeBase):
async def get_rates(self, ccy):
json = await self.get_json('bylls.com', 'api/price?from_currency=BTC&to_currency=CAD')
return {'CAD': Decimal(json['public_price']['to_price'])}
class Coinbase(ExchangeBase):
async def get_rates(self, ccy):