I have an API call result in Python which is returning the following:
b'[{"type":"deposit","currency":"bch","amount":"0.00000001","available":"0.00000001"}]'
I tried to extract the value 0.00000001
but without any success.
I know how to extract values from lists and dictionaries in Python,but as there is the b'
value before the results I am not figuring out how to get it.
Any ideas?