[protobuf] Any type with python

2016-02-26 Thread Tim Richardson
Is the Any type implemented in the python libraries yet? I read this on the documentation *Currently the runtime libraries for working with Any types are under development*. -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe

[protobuf] Scoping in definitions

2016-02-25 Thread Tim Richardson
Hi, just wanted to check my declaration with you guys, is it possible to reuse the `Study` declaration in the `Denormalised` package mypackage; message Dataset { required string accession = 1; required string url_self = 2; optional string title = 3; optional string description = 4;

[protobuf] Transform data from one schema to another

2016-02-24 Thread Tim Richardson
I have a data modelling problem and I'm wondering if protobuf could be the right tool to help me solve this problem. I have data in one schema and i want to transform it to another schema. message Dataset { required string title = 1; required string description = 2; } message Study {