accessed MarketByPrice (6501.T) data via EWA/Python. How can I read these "Key" value? isn't it a pair of side&price?
Resolver not registered: react.asset.discussionTagsAsset
Hi @kazuhisa.matsuda,
The key type of a MarketByPrice Map is a Buffer, which is Base64-encoded. Python can decode these values:
>>> 'OTE0MDAwMEE='.decode('base64')'9140000A'
Thank you for the response. so for Python3, it should be following?
>>>base64.b64decode('OTE0MDAwMEE=')
b'9140000A'
Permission Problem You need the session.valid permission to do that.