gpt4 book ai didi

python - "Account"对象没有属性获取火币Python API

转载 作者:太空宇宙 更新时间:2023-11-03 20:59:35 26 4
gpt4 key购买 nike

从 Huobi_python api,我试图让余额显示出来,不幸的是我收到了这个错误:

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

我不知道我做错了什么或者如何让 .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, "\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)

输出:

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

关于python - "Account"对象没有属性获取火币Python API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55795545/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com