graphsense / graphsense-REST

A REST service for accessing cryptocurrency data stored in Apache Cassandra.
MIT License
10 stars 8 forks source link

Bulk interface | flattened value representation #59

Closed behas closed 2 years ago

behas commented 2 years ago

When requesting addresses via the bulk interface and loading them into a data frame, values are represented as follows:

``{'code': 'eur', 'value': 27.5},{'code': 'usd', 'value': 123}```

For extracting nested structures from a df column, it would be better to represent this data as valid JSON docs (brackets, quotation marks for keys). This applies for all other responses returning nested values in a flattened column.

behas commented 2 years ago

works