I have a 2d numeric matrix which I want to store to the cloud-datastore,
from google.cloud import datastore
client = datastore.Client(project='my-random-project')
complete_key = client.key("Task", "2185e0c5")
task = datastore.Entity(key=complete_key, exclude_from_indexes=['data'])
task.update({'data': {'input': [[1,2,3],[4,5,6],[7,8,9]], 'output': [[2,3,4],[5,6,7],[8,9,10]]}})
client.put(task)
so when I run the code above I get the following error
InvalidArgument: 400 list_value cannot contain a Value containing another list_value.
How can I put this kind of data to cloud-datastore ?