Protocol buffer is a binary format. You can serve protocol buffer content from django in a similar way to serving pictures, files ...
Example:
def protobuf_view(request):
...
x = payments_pb2
x.address = 'home'
return HttpResponse(x.SerializeToString(), content_type="application/octet-stream")