“Account” object has no atribute get Huobi_python API

爱⌒轻易说出口 提交于 2020-01-15 10:08:52

问题


From the Huobi_python api, I'm trying to get the balance to show up sadly enough I get this error :

"Traceback (most recent call last): File "C:/Users/Root/PycharmProjects/Huobi_API/TestZone.py", line 9, in print(balance.get(0).get(0).balance)

AttributeError: 'Account' object has no attribute 'get'"

I have no clue what I'm doing wrong or how to get the .get get to work Link to github: https://github.com/huobiapi/huobi_Python

from huobi import *
from huobi.model.constant import *



request_client =  RequestClient(api_key="XXXXXXXXXX", secret_key="XXXXXXXXXXXXX")

balance = request_client.get_account_balance_by_account_type(AccountType.SPOT)
print(balance.get(0).get(0).balance)

回答1:


There is an alternative way to get the detail balance by SubscriptionClient. The following present your account ID(s), account type(s)/ stage(s) and balance(s) with currency(ies). The source of the below code is

https://github.com/HuobiRDCenter/huobi_Python/blob/master/example/websocket/reqsignaccountlist.py

from huobi import SubscriptionClient
from huobi.constant.test import *
from huobi.model import *
from huobi.base.printobject import PrintMix, PrintBasic

sub_client = SubscriptionClient(api_key=g_api_key, secret_key=g_secret_key)

def callback(account_balance: 'AccountBalanceRequest'):
    print("---- account_balance:  ----")
    PrintBasic.print_basic(account_balance.timestamp, "Timestamp")
    PrintBasic.print_basic(account_balance.client_req_id, "Client Req ID")
    PrintBasic.print_basic(account_balance.topic, "Topic")
    print("Account List as below : count " + str(len(account_balance.account_list)))
    if len(account_balance.account_list):
        for account in account_balance.account_list:
            PrintBasic.print_basic(account.id, "\tId")
            PrintBasic.print_basic(account.account_type, "\tAccount Type")
            PrintBasic.print_basic(account.account_state, "\tAccount State")
            print("\tAccount ID : " + str(account.id) + " Balance List as below :")
            if len(account.balances):
                for balance in account.balances:
                    PrintBasic.print_basic(balance.currency, "\t\tCurrency")
                    PrintBasic.print_basic(balance.balance_type, "\t\tBalance type")
                    PrintBasic.print_basic(balance.balance, "\t\tBalance")
                    print()
    print()

sub_client.request_account_balance_event(callback=callback, client_req_id = None, auto_close = True)

Output:

> ---- account_balance:  ---- Timestamp : 1569693210000 Client Req ID : 1569XXXXXXXXX Topic : accounts.list Account List as below : count 2
>         Id : 1XXXXXXX
>         Account Type : spot
>         Account State : working
>         Account ID : 19XXXXX Balance List as below :
>                 Currency : but
>                 Balance type : trade
>                 Balance : 19.6
> 
>                 Currency : aac
>                 Balance type : trade
>                 Balance : 2.45
> 
>                 Currency : iic
>                 Balance type : trade
>                 Balance : 49
> 
>                 Currency : eon
>                 Balance type : trade
>                 Balance : 10
> 
>                 Currency : eop
>                 Balance type : trade
>                 Balance : 10
> 
>                 Currency : ht
>                 Balance type : trade
>                 Balance : 84.14270001
> 
>                 Currency : hot
>                 Balance type : trade
>                 Balance : 0.2333
> 
>                 Currency : theta
>                 Balance type : trade
>                 Balance : 0.0022
> 
>                 Currency : uc
>                 Balance type : trade
>                 Balance : 49
> 
>                 Currency : btc
>                 Balance type : trade
>                 Balance : 0.0083007271
> 
>                 Currency : ssp
>                 Balance type : trade
>                 Balance : 0.0002
> 
>                 Currency : uuu
>                 Balance type : trade
>                 Balance : 161.7
> 
>                 Currency : gtc
>                 Balance type : trade
>                 Balance : 1.5313
> 
>                 Currency : usdt
>                 Balance type : trade
>                 Balance : 273.618382
> 
>                 Currency : eth
>                 Balance type : trade
>                 Balance : 0.00006
> 
>                 Currency : tos
>                 Balance type : trade
>                 Balance : 0.0001
> 
>                 Currency : meetone
>                 Balance type : trade
>                 Balance : 5
> 
>                 Currency : smt
>                 Balance type : trade
>                 Balance : 0.4461
> 
>                 Currency : uip
>                 Balance type : trade
>                 Balance : 9.8
> 
>                 Currency : portal
>                 Balance type : trade
>                 Balance : 4.9
> 
>                 Currency : add
>                 Balance type : trade
>                 Balance : 5
> 
>                 Currency : mex
>                 Balance type : trade
>                 Balance : 24.5
> 
>                 Currency : cnn
>                 Balance type : trade
>                 Balance : 882
> 
>                 Currency : cdc
>                 Balance type : trade
>                 Balance : 24.5
> 
>                 Currency : hvt
>                 Balance type : trade
>                 Balance : 2.5
> 
>                 Currency : iq
>                 Balance type : trade
>                 Balance : 51
> 
>                 Currency : lxt
>                 Balance type : trade
>                 Balance : 24.5
> 
>                 Currency : egcc
>                 Balance type : trade
>                 Balance : 24.5
> 
>                 Currency : 18c
>                 Balance type : trade
>                 Balance : 9.8
> 
>                 Currency : zla
>                 Balance type : trade
>                 Balance : 2.352
> 
>                 Currency : datx
>                 Balance type : trade
>                 Balance : 14.7
> 
>                 Currency : she
>                 Balance type : trade
>                 Balance : 49
> 
>                 Currency : gsc
>                 Balance type : trade
>                 Balance : 4.9
> 
>                 Currency : tfuel
>                 Balance type : trade
>                 Balance : 168.911
> 
>                 Currency : mds
>                 Balance type : trade
>                 Balance : 22.9753
> 
>         Id : 20XXXXX
>         Account Type : point
>         Account State : working
>         Account ID : 20XXXXX Balance List as below :
>                 Currency : hbpoint
>                 Balance type : trade
>                 Balance : 976.7123546577


来源:https://stackoverflow.com/questions/55795545/account-object-has-no-atribute-get-huobi-python-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!