kongming-hv 1.3.0__cp314-cp314-manylinux_2_34_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. buf/validate/expression_pb2.py +30 -0
  2. buf/validate/expression_pb2_grpc.py +4 -0
  3. buf/validate/priv/private_pb2.py +30 -0
  4. buf/validate/priv/private_pb2_grpc.py +4 -0
  5. buf/validate/validate_pb2.py +404 -0
  6. buf/validate/validate_pb2_grpc.py +4 -0
  7. google/api/annotations_pb2.py +27 -0
  8. google/api/annotations_pb2_grpc.py +4 -0
  9. google/api/field_behavior_pb2.py +30 -0
  10. google/api/field_behavior_pb2_grpc.py +4 -0
  11. google/api/http_pb2.py +30 -0
  12. google/api/http_pb2_grpc.py +4 -0
  13. google/rpc/status_pb2.py +27 -0
  14. google/rpc/status_pb2_grpc.py +4 -0
  15. kongming/__init__.py +0 -0
  16. kongming/api/__init__.py +14 -0
  17. kongming/api/aletheia_pb2.py +73 -0
  18. kongming/api/aletheia_pb2_grpc.py +181 -0
  19. kongming/api/annotations_pb2.py +42 -0
  20. kongming/api/annotations_pb2_grpc.py +4 -0
  21. kongming/api/chunk_pb2.py +102 -0
  22. kongming/api/chunk_pb2_grpc.py +4 -0
  23. kongming/api/hv_pb2.py +145 -0
  24. kongming/api/hv_pb2_grpc.py +4 -0
  25. kongming/api/memory_pb2.py +55 -0
  26. kongming/api/memory_pb2_grpc.py +4 -0
  27. kongming/api/misc_pb2.py +39 -0
  28. kongming/api/misc_pb2_grpc.py +4 -0
  29. kongming/api/set_game_pb2.py +78 -0
  30. kongming/api/set_game_pb2_grpc.py +4 -0
  31. kongming/ext/__init__.py +0 -0
  32. kongming/ext/_hv.cpython-314-x86_64-linux-gnu.so +0 -0
  33. kongming/ext/build.py +428 -0
  34. kongming/ext/go.py +2182 -0
  35. kongming/ext/hv.py +2230 -0
  36. kongming/hv/__init__.py +3 -0
  37. kongming/hv/example.py +101 -0
  38. kongming/hv/helpers.py +45 -0
  39. kongming/memory/__init__.py +3 -0
  40. kongming/memory/base.py +33 -0
  41. kongming/memory/remote.py +74 -0
  42. kongming/memory/wrapped.py +68 -0
  43. kongming_hv-1.3.0.dist-info/METADATA +52 -0
  44. kongming_hv-1.3.0.dist-info/RECORD +47 -0
  45. kongming_hv-1.3.0.dist-info/WHEEL +5 -0
  46. kongming_hv-1.3.0.dist-info/licenses/LICENSE +21 -0
  47. kongming_hv-1.3.0.dist-info/top_level.txt +3 -0
@@ -0,0 +1,30 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: buf/validate/expression.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf.internal import builder as _builder
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import symbol_database as _symbol_database
9
+ # @@protoc_insertion_point(imports)
10
+
11
+ _sym_db = _symbol_database.Default()
12
+
13
+
14
+
15
+
16
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x62uf/validate/expression.proto\x12\x0c\x62uf.validate\"V\n\nConstraint\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\x12\x1e\n\nexpression\x18\x03 \x01(\tR\nexpression\"E\n\nViolations\x12\x37\n\nviolations\x18\x01 \x03(\x0b\x32\x17.buf.validate.ViolationR\nviolations\"\x82\x01\n\tViolation\x12\x1d\n\nfield_path\x18\x01 \x01(\tR\tfieldPath\x12#\n\rconstraint_id\x18\x02 \x01(\tR\x0c\x63onstraintId\x12\x18\n\x07message\x18\x03 \x01(\tR\x07message\x12\x17\n\x07\x66or_key\x18\x04 \x01(\x08R\x06\x66orKeyB\xbd\x01\n\x10\x63om.buf.validateB\x0f\x45xpressionProtoP\x01ZGbuf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate\xa2\x02\x03\x42VX\xaa\x02\x0c\x42uf.Validate\xca\x02\x0c\x42uf\\Validate\xe2\x02\x18\x42uf\\Validate\\GPBMetadata\xea\x02\rBuf::Validateb\x06proto3')
17
+
18
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
19
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'buf.validate.expression_pb2', globals())
20
+ if _descriptor._USE_C_DESCRIPTORS == False:
21
+
22
+ DESCRIPTOR._options = None
23
+ DESCRIPTOR._serialized_options = b'\n\020com.buf.validateB\017ExpressionProtoP\001ZGbuf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate\242\002\003BVX\252\002\014Buf.Validate\312\002\014Buf\\Validate\342\002\030Buf\\Validate\\GPBMetadata\352\002\rBuf::Validate'
24
+ _CONSTRAINT._serialized_start=47
25
+ _CONSTRAINT._serialized_end=133
26
+ _VIOLATIONS._serialized_start=135
27
+ _VIOLATIONS._serialized_end=204
28
+ _VIOLATION._serialized_start=207
29
+ _VIOLATION._serialized_end=337
30
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,4 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+
@@ -0,0 +1,30 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: buf/validate/priv/private.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf.internal import builder as _builder
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import symbol_database as _symbol_database
9
+ # @@protoc_insertion_point(imports)
10
+
11
+ _sym_db = _symbol_database.Default()
12
+
13
+
14
+ from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
15
+
16
+
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x62uf/validate/priv/private.proto\x12\x11\x62uf.validate.priv\x1a google/protobuf/descriptor.proto\"C\n\x10\x46ieldConstraints\x12/\n\x03\x63\x65l\x18\x01 \x03(\x0b\x32\x1d.buf.validate.priv.ConstraintR\x03\x63\x65l\"V\n\nConstraint\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\x12\x1e\n\nexpression\x18\x03 \x01(\tR\nexpression:\\\n\x05\x66ield\x12\x1d.google.protobuf.FieldOptions\x18\x88\t \x01(\x0b\x32#.buf.validate.priv.FieldConstraintsR\x05\x66ield\x88\x01\x01\x42\xd9\x01\n\x15\x63om.buf.validate.privB\x0cPrivateProtoP\x01ZLbuf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate/priv\xa2\x02\x03\x42VP\xaa\x02\x11\x42uf.Validate.Priv\xca\x02\x11\x42uf\\Validate\\Priv\xe2\x02\x1d\x42uf\\Validate\\Priv\\GPBMetadata\xea\x02\x13\x42uf::Validate::Privb\x06proto3')
18
+
19
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
20
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'buf.validate.priv.private_pb2', globals())
21
+ if _descriptor._USE_C_DESCRIPTORS == False:
22
+ google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(field)
23
+
24
+ DESCRIPTOR._options = None
25
+ DESCRIPTOR._serialized_options = b'\n\025com.buf.validate.privB\014PrivateProtoP\001ZLbuf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go/buf/validate/priv\242\002\003BVP\252\002\021Buf.Validate.Priv\312\002\021Buf\\Validate\\Priv\342\002\035Buf\\Validate\\Priv\\GPBMetadata\352\002\023Buf::Validate::Priv'
26
+ _FIELDCONSTRAINTS._serialized_start=88
27
+ _FIELDCONSTRAINTS._serialized_end=155
28
+ _CONSTRAINT._serialized_start=157
29
+ _CONSTRAINT._serialized_end=243
30
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,4 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+