0
client.get_spot_price(currency='EUR')
這條線會給我當前的比特幣價格,但我如何找到Litecoin和Etherum的價格?Coinbase Python API如何獲得Litecoin價格?
client.get_spot_price(currency='EUR')
這條線會給我當前的比特幣價格,但我如何找到Litecoin和Etherum的價格?Coinbase Python API如何獲得Litecoin價格?
您需要通過正確的currency_pair
作爲docs
client.get_spot_price(currency_pair='LTC-EUR')
編輯
這似乎是一個錯誤的github注意觀察。爲了速戰速決,您可以通過chaning此功能
def get_spot_price(self, **params):
"""https://developers.coinbase.com/api/v2#get-spot-price"""
response = self._get('v2', 'prices','spot', data=params)
return self._make_api_object(response, APIObject)
這個
def get_spot_price(self, **params):
"""https://developers.coinbase.com/api/v2#get-spot-price"""
currency_pair = params['currency_pair']
response = self._get('v2', 'prices', currency_pair,'spot', data=params)
return self._make_api_object(response, APIObject)
我試過而是獲得歐元的價格LTC這個修改client.py文件,我得到的BTC價格我的本地貨幣... –
我編輯了答案 – DJK
另外,我還沒有測試過這個,但是最後一條評論說它已經在github上的master上發生了變化,所以可能你可以克隆master – DJK