django-pb-model icon indicating copy to clipboard operation
django-pb-model copied to clipboard

Protobuf mixin for django model

Results 4 django-pb-model issues
Sort by recently updated
recently updated
newest added

i have a proto : ``` enumx{ VALUE1 = 0; VALUE2 = 0; } proto_test{ repeated enumx variable_test; } ``` django model ``` class modelx(ProtoBufMixin, Model): pb_model = proto_test_pb2.model pb_2_dj_fields...

## Problem I've been using ProtoBufMixin for some time but these days I came across a giant .proto and when applying ProtoBufMixin I felt the need to remove a single...

Any support for having unicode literals while serialising json data to proto message

Hi, first I wanted to say thanks for making this library. It will be very helpful to me. I've been getting an error when trying to work with nested repeated...