Nasdaq / NasdaqCloudDataService-SDK-Python

Nasdaq Data Link provides a modern and efficient method of delivery for real-time exchange data and other financial information. This repository provides a Python SDK for developing applications using Nasdaq Data Link's real-time data.
https://www.nasdaq.com/solutions/data-link-api
Apache License 2.0
56 stars 25 forks source link

Fix deserialization issue with a bytes field #20

Closed ssortman closed 3 years ago

ssortman commented 3 years ago

Remove the serialization of the avro message into a json string. This is unneeded as the deserialize function is allowed to return any object, and it causes issues when there is an avro field of type bytes, as this is not a valid type for json objects.