"Account"对象没有贡品获取Huobi_python API



从Huobi_python api中,我试图让平衡出现足够可悲,我收到此错误:

"回溯(最近一次调用(:文件 "C:/Users/Root/PycharmProjects/Huobi_API/TestZone.py",第 9 行,在 print(balance.get(0(.get(0(.balance(

属性

错误:"帐户"对象没有属性"get">

我不知道我做错了什么或如何让 .get 开始工作链接到 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)

还有另一种方法可以通过SubscriptionClient来获得细节平衡。以下显示您的账户ID、账户类型/阶段和货币余额。以下代码的源代码是

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, "ttCurrency")
                    PrintBasic.print_basic(balance.balance_type, "ttBalance type")
                    PrintBasic.print_basic(balance.balance, "ttBalance")
                    print()
    print()
sub_client.request_account_balance_event(callback=callback, client_req_id = None, auto_close = True)

输出:

> ---- 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

最新更新