Merge pull request #1631 from pdroalves/master
Added new exchangers to Exchange rates plugin
This commit is contained in:
@@ -259,6 +259,23 @@ class Winkdex(ExchangeBase):
|
|||||||
return dict([(h['timestamp'][:10], h['price'] / 100.0)
|
return dict([(h['timestamp'][:10], h['price'] / 100.0)
|
||||||
for h in history])
|
for h in history])
|
||||||
|
|
||||||
|
class MercadoBitcoin(ExchangeBase):
|
||||||
|
def get_rates(self,ccy):
|
||||||
|
json = self.get_json('mercadobitcoin.net',
|
||||||
|
"/api/ticker/ticker_bitcoin")
|
||||||
|
return {'BRL': Decimal(json['ticker']['last'])}
|
||||||
|
|
||||||
|
def history_ccys(self):
|
||||||
|
return ['BRL']
|
||||||
|
|
||||||
|
class Bitcointoyou(ExchangeBase):
|
||||||
|
def get_rates(self,ccy):
|
||||||
|
json = self.get_json('bitcointoyou.com',
|
||||||
|
"/API/ticker.aspx")
|
||||||
|
return {'BRL': Decimal(json['ticker']['last'])}
|
||||||
|
|
||||||
|
def history_ccys(self):
|
||||||
|
return ['BRL']
|
||||||
|
|
||||||
|
|
||||||
def dictinvert(d):
|
def dictinvert(d):
|
||||||
|
|||||||
Reference in New Issue
Block a user