when accessing commands like request_client.get_balance() Is there a way to access the data that is being printed to the shell?
For example, If I call the command request_client.get_balance() I get:
[{"accountAlias":"XYZ","asset":"USDT","balance":"16.97222205"}]
but If I print it like so,
result = request_client.get_balance()
print(result)
I get:
[<binance_f.model.balance.Balance object at XXX>, <binance_f.model.balance.Balance object at XXX>, <binance_f.model.balance.Balance object at XXX>]
I would like to be able to access the data itself and use it as a variable, is there any way to do so?
Thank you!