denkproto 1.0.21__py3-none-any.whl → 1.0.23__py3-none-any.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.
Potentially problematic release.
This version of denkproto might be problematic. Click here for more details.
- denkproto/DENKbuffer_pb2.py +11 -1
- denkproto/DENKbuffer_pb2_grpc.py +24 -0
- denkproto/ImageAnalysis_ProtobufMessages_pb2.py +11 -1
- denkproto/ImageAnalysis_ProtobufMessages_pb2_grpc.py +24 -0
- denkproto/__about__.py +1 -1
- denkproto/denkcache_pb2.py +56 -0
- denkproto/denkcache_pb2.pyi +69 -0
- denkproto/denkcache_pb2_grpc.py +269 -0
- denkproto/modelfile_v1_pb2.py +11 -1
- denkproto/modelfile_v1_pb2_grpc.py +24 -0
- denkproto/modelfile_v2_pb2.py +11 -1
- denkproto/modelfile_v2_pb2_grpc.py +24 -0
- denkproto/results_pb2.py +11 -1
- denkproto/results_pb2_grpc.py +24 -0
- {denkproto-1.0.21.dist-info → denkproto-1.0.23.dist-info}/METADATA +2 -2
- denkproto-1.0.23.dist-info/RECORD +24 -0
- denkproto-1.0.21.dist-info/RECORD +0 -16
- {denkproto-1.0.21.dist-info → denkproto-1.0.23.dist-info}/WHEEL +0 -0
denkproto/DENKbuffer_pb2.py
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
3
4
|
# source: DENKbuffer.proto
|
|
4
|
-
# Protobuf Python Version: 5.
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
5
6
|
"""Generated protocol buffer code."""
|
|
6
7
|
from google.protobuf import descriptor as _descriptor
|
|
7
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
8
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
9
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'DENKbuffer.proto'
|
|
19
|
+
)
|
|
10
20
|
# @@protoc_insertion_point(imports)
|
|
11
21
|
|
|
12
22
|
_sym_db = _symbol_database.Default()
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.68.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in DENKbuffer_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
3
4
|
# source: ImageAnalysis_ProtobufMessages.proto
|
|
4
|
-
# Protobuf Python Version: 5.
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
5
6
|
"""Generated protocol buffer code."""
|
|
6
7
|
from google.protobuf import descriptor as _descriptor
|
|
7
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
8
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
9
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'ImageAnalysis_ProtobufMessages.proto'
|
|
19
|
+
)
|
|
10
20
|
# @@protoc_insertion_point(imports)
|
|
11
21
|
|
|
12
22
|
_sym_db = _symbol_database.Default()
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.68.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in ImageAnalysis_ProtobufMessages_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
denkproto/__about__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.0.
|
|
1
|
+
__version__ = "1.0.23"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: denkcache.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'denkcache.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0f\x64\x65nkcache.proto\x12\tdenkcache\"@\n\x13ObjectExistsRequest\x12\x16\n\x0e\x63ontainer_name\x18\x01 \x01(\t\x12\x11\n\tblob_name\x18\x02 \x01(\t\"&\n\x14ObjectExistsResponse\x12\x0e\n\x06\x65xists\x18\x01 \x01(\x08\"=\n\x10GetObjectRequest\x12\x16\n\x0e\x63ontainer_name\x18\x01 \x01(\t\x12\x11\n\tblob_name\x18\x02 \x01(\t\"#\n\x11GetObjectResponse\x12\x0e\n\x06object\x18\x01 \x01(\x0c\"C\n\x16GetCachedObjectRequest\x12\x16\n\x0e\x63ontainer_name\x18\x01 \x01(\t\x12\x11\n\tblob_name\x18\x02 \x01(\t\"9\n\x17GetCachedObjectResponse\x12\x13\n\x06object\x18\x01 \x01(\x0cH\x00\x88\x01\x01\x42\t\n\x07_object\"C\n\x16HasObjectCachedRequest\x12\x16\n\x0e\x63ontainer_name\x18\x01 \x01(\t\x12\x11\n\tblob_name\x18\x02 \x01(\t\")\n\x17HasObjectCachedResponse\x12\x0e\n\x06\x65xists\x18\x01 \x01(\x08\"\x11\n\x0fPingPongRequest\"\x12\n\x10PingPongResponse2\x9d\x03\n\tDENKcache\x12\x43\n\x08PingPong\x12\x1a.denkcache.PingPongRequest\x1a\x1b.denkcache.PingPongResponse\x12X\n\x0fHasObjectCached\x12!.denkcache.HasObjectCachedRequest\x1a\".denkcache.HasObjectCachedResponse\x12O\n\x0cObjectExists\x12\x1e.denkcache.ObjectExistsRequest\x1a\x1f.denkcache.ObjectExistsResponse\x12\x46\n\tGetObject\x12\x1b.denkcache.GetObjectRequest\x1a\x1c.denkcache.GetObjectResponse\x12X\n\x0fGetCachedObject\x12!.denkcache.GetCachedObjectRequest\x1a\".denkcache.GetCachedObjectResponseb\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'denkcache_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_OBJECTEXISTSREQUEST']._serialized_start=30
|
|
35
|
+
_globals['_OBJECTEXISTSREQUEST']._serialized_end=94
|
|
36
|
+
_globals['_OBJECTEXISTSRESPONSE']._serialized_start=96
|
|
37
|
+
_globals['_OBJECTEXISTSRESPONSE']._serialized_end=134
|
|
38
|
+
_globals['_GETOBJECTREQUEST']._serialized_start=136
|
|
39
|
+
_globals['_GETOBJECTREQUEST']._serialized_end=197
|
|
40
|
+
_globals['_GETOBJECTRESPONSE']._serialized_start=199
|
|
41
|
+
_globals['_GETOBJECTRESPONSE']._serialized_end=234
|
|
42
|
+
_globals['_GETCACHEDOBJECTREQUEST']._serialized_start=236
|
|
43
|
+
_globals['_GETCACHEDOBJECTREQUEST']._serialized_end=303
|
|
44
|
+
_globals['_GETCACHEDOBJECTRESPONSE']._serialized_start=305
|
|
45
|
+
_globals['_GETCACHEDOBJECTRESPONSE']._serialized_end=362
|
|
46
|
+
_globals['_HASOBJECTCACHEDREQUEST']._serialized_start=364
|
|
47
|
+
_globals['_HASOBJECTCACHEDREQUEST']._serialized_end=431
|
|
48
|
+
_globals['_HASOBJECTCACHEDRESPONSE']._serialized_start=433
|
|
49
|
+
_globals['_HASOBJECTCACHEDRESPONSE']._serialized_end=474
|
|
50
|
+
_globals['_PINGPONGREQUEST']._serialized_start=476
|
|
51
|
+
_globals['_PINGPONGREQUEST']._serialized_end=493
|
|
52
|
+
_globals['_PINGPONGRESPONSE']._serialized_start=495
|
|
53
|
+
_globals['_PINGPONGRESPONSE']._serialized_end=513
|
|
54
|
+
_globals['_DENKCACHE']._serialized_start=516
|
|
55
|
+
_globals['_DENKCACHE']._serialized_end=929
|
|
56
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
from google.protobuf import descriptor as _descriptor
|
|
2
|
+
from google.protobuf import message as _message
|
|
3
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional
|
|
4
|
+
|
|
5
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
6
|
+
|
|
7
|
+
class ObjectExistsRequest(_message.Message):
|
|
8
|
+
__slots__ = ("container_name", "blob_name")
|
|
9
|
+
CONTAINER_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
10
|
+
BLOB_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
container_name: str
|
|
12
|
+
blob_name: str
|
|
13
|
+
def __init__(self, container_name: _Optional[str] = ..., blob_name: _Optional[str] = ...) -> None: ...
|
|
14
|
+
|
|
15
|
+
class ObjectExistsResponse(_message.Message):
|
|
16
|
+
__slots__ = ("exists",)
|
|
17
|
+
EXISTS_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
exists: bool
|
|
19
|
+
def __init__(self, exists: bool = ...) -> None: ...
|
|
20
|
+
|
|
21
|
+
class GetObjectRequest(_message.Message):
|
|
22
|
+
__slots__ = ("container_name", "blob_name")
|
|
23
|
+
CONTAINER_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
BLOB_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
container_name: str
|
|
26
|
+
blob_name: str
|
|
27
|
+
def __init__(self, container_name: _Optional[str] = ..., blob_name: _Optional[str] = ...) -> None: ...
|
|
28
|
+
|
|
29
|
+
class GetObjectResponse(_message.Message):
|
|
30
|
+
__slots__ = ("object",)
|
|
31
|
+
OBJECT_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
object: bytes
|
|
33
|
+
def __init__(self, object: _Optional[bytes] = ...) -> None: ...
|
|
34
|
+
|
|
35
|
+
class GetCachedObjectRequest(_message.Message):
|
|
36
|
+
__slots__ = ("container_name", "blob_name")
|
|
37
|
+
CONTAINER_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
BLOB_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
container_name: str
|
|
40
|
+
blob_name: str
|
|
41
|
+
def __init__(self, container_name: _Optional[str] = ..., blob_name: _Optional[str] = ...) -> None: ...
|
|
42
|
+
|
|
43
|
+
class GetCachedObjectResponse(_message.Message):
|
|
44
|
+
__slots__ = ("object",)
|
|
45
|
+
OBJECT_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
object: bytes
|
|
47
|
+
def __init__(self, object: _Optional[bytes] = ...) -> None: ...
|
|
48
|
+
|
|
49
|
+
class HasObjectCachedRequest(_message.Message):
|
|
50
|
+
__slots__ = ("container_name", "blob_name")
|
|
51
|
+
CONTAINER_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
BLOB_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
container_name: str
|
|
54
|
+
blob_name: str
|
|
55
|
+
def __init__(self, container_name: _Optional[str] = ..., blob_name: _Optional[str] = ...) -> None: ...
|
|
56
|
+
|
|
57
|
+
class HasObjectCachedResponse(_message.Message):
|
|
58
|
+
__slots__ = ("exists",)
|
|
59
|
+
EXISTS_FIELD_NUMBER: _ClassVar[int]
|
|
60
|
+
exists: bool
|
|
61
|
+
def __init__(self, exists: bool = ...) -> None: ...
|
|
62
|
+
|
|
63
|
+
class PingPongRequest(_message.Message):
|
|
64
|
+
__slots__ = ()
|
|
65
|
+
def __init__(self) -> None: ...
|
|
66
|
+
|
|
67
|
+
class PingPongResponse(_message.Message):
|
|
68
|
+
__slots__ = ()
|
|
69
|
+
def __init__(self) -> None: ...
|
|
@@ -0,0 +1,269 @@
|
|
|
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
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
import denkcache_pb2 as denkcache__pb2
|
|
7
|
+
|
|
8
|
+
GRPC_GENERATED_VERSION = '1.68.0'
|
|
9
|
+
GRPC_VERSION = grpc.__version__
|
|
10
|
+
_version_not_supported = False
|
|
11
|
+
|
|
12
|
+
try:
|
|
13
|
+
from grpc._utilities import first_version_is_lower
|
|
14
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
15
|
+
except ImportError:
|
|
16
|
+
_version_not_supported = True
|
|
17
|
+
|
|
18
|
+
if _version_not_supported:
|
|
19
|
+
raise RuntimeError(
|
|
20
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
21
|
+
+ f' but the generated code in denkcache_pb2_grpc.py depends on'
|
|
22
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
23
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
24
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class DENKcacheStub(object):
|
|
29
|
+
"""Missing associated documentation comment in .proto file."""
|
|
30
|
+
|
|
31
|
+
def __init__(self, channel):
|
|
32
|
+
"""Constructor.
|
|
33
|
+
|
|
34
|
+
Args:
|
|
35
|
+
channel: A grpc.Channel.
|
|
36
|
+
"""
|
|
37
|
+
self.PingPong = channel.unary_unary(
|
|
38
|
+
'/denkcache.DENKcache/PingPong',
|
|
39
|
+
request_serializer=denkcache__pb2.PingPongRequest.SerializeToString,
|
|
40
|
+
response_deserializer=denkcache__pb2.PingPongResponse.FromString,
|
|
41
|
+
_registered_method=True)
|
|
42
|
+
self.HasObjectCached = channel.unary_unary(
|
|
43
|
+
'/denkcache.DENKcache/HasObjectCached',
|
|
44
|
+
request_serializer=denkcache__pb2.HasObjectCachedRequest.SerializeToString,
|
|
45
|
+
response_deserializer=denkcache__pb2.HasObjectCachedResponse.FromString,
|
|
46
|
+
_registered_method=True)
|
|
47
|
+
self.ObjectExists = channel.unary_unary(
|
|
48
|
+
'/denkcache.DENKcache/ObjectExists',
|
|
49
|
+
request_serializer=denkcache__pb2.ObjectExistsRequest.SerializeToString,
|
|
50
|
+
response_deserializer=denkcache__pb2.ObjectExistsResponse.FromString,
|
|
51
|
+
_registered_method=True)
|
|
52
|
+
self.GetObject = channel.unary_unary(
|
|
53
|
+
'/denkcache.DENKcache/GetObject',
|
|
54
|
+
request_serializer=denkcache__pb2.GetObjectRequest.SerializeToString,
|
|
55
|
+
response_deserializer=denkcache__pb2.GetObjectResponse.FromString,
|
|
56
|
+
_registered_method=True)
|
|
57
|
+
self.GetCachedObject = channel.unary_unary(
|
|
58
|
+
'/denkcache.DENKcache/GetCachedObject',
|
|
59
|
+
request_serializer=denkcache__pb2.GetCachedObjectRequest.SerializeToString,
|
|
60
|
+
response_deserializer=denkcache__pb2.GetCachedObjectResponse.FromString,
|
|
61
|
+
_registered_method=True)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
class DENKcacheServicer(object):
|
|
65
|
+
"""Missing associated documentation comment in .proto file."""
|
|
66
|
+
|
|
67
|
+
def PingPong(self, request, context):
|
|
68
|
+
"""Missing associated documentation comment in .proto file."""
|
|
69
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
70
|
+
context.set_details('Method not implemented!')
|
|
71
|
+
raise NotImplementedError('Method not implemented!')
|
|
72
|
+
|
|
73
|
+
def HasObjectCached(self, request, context):
|
|
74
|
+
"""Missing associated documentation comment in .proto file."""
|
|
75
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
76
|
+
context.set_details('Method not implemented!')
|
|
77
|
+
raise NotImplementedError('Method not implemented!')
|
|
78
|
+
|
|
79
|
+
def ObjectExists(self, request, context):
|
|
80
|
+
"""Missing associated documentation comment in .proto file."""
|
|
81
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
82
|
+
context.set_details('Method not implemented!')
|
|
83
|
+
raise NotImplementedError('Method not implemented!')
|
|
84
|
+
|
|
85
|
+
def GetObject(self, request, context):
|
|
86
|
+
"""Missing associated documentation comment in .proto file."""
|
|
87
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
88
|
+
context.set_details('Method not implemented!')
|
|
89
|
+
raise NotImplementedError('Method not implemented!')
|
|
90
|
+
|
|
91
|
+
def GetCachedObject(self, request, context):
|
|
92
|
+
"""Missing associated documentation comment in .proto file."""
|
|
93
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
94
|
+
context.set_details('Method not implemented!')
|
|
95
|
+
raise NotImplementedError('Method not implemented!')
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
def add_DENKcacheServicer_to_server(servicer, server):
|
|
99
|
+
rpc_method_handlers = {
|
|
100
|
+
'PingPong': grpc.unary_unary_rpc_method_handler(
|
|
101
|
+
servicer.PingPong,
|
|
102
|
+
request_deserializer=denkcache__pb2.PingPongRequest.FromString,
|
|
103
|
+
response_serializer=denkcache__pb2.PingPongResponse.SerializeToString,
|
|
104
|
+
),
|
|
105
|
+
'HasObjectCached': grpc.unary_unary_rpc_method_handler(
|
|
106
|
+
servicer.HasObjectCached,
|
|
107
|
+
request_deserializer=denkcache__pb2.HasObjectCachedRequest.FromString,
|
|
108
|
+
response_serializer=denkcache__pb2.HasObjectCachedResponse.SerializeToString,
|
|
109
|
+
),
|
|
110
|
+
'ObjectExists': grpc.unary_unary_rpc_method_handler(
|
|
111
|
+
servicer.ObjectExists,
|
|
112
|
+
request_deserializer=denkcache__pb2.ObjectExistsRequest.FromString,
|
|
113
|
+
response_serializer=denkcache__pb2.ObjectExistsResponse.SerializeToString,
|
|
114
|
+
),
|
|
115
|
+
'GetObject': grpc.unary_unary_rpc_method_handler(
|
|
116
|
+
servicer.GetObject,
|
|
117
|
+
request_deserializer=denkcache__pb2.GetObjectRequest.FromString,
|
|
118
|
+
response_serializer=denkcache__pb2.GetObjectResponse.SerializeToString,
|
|
119
|
+
),
|
|
120
|
+
'GetCachedObject': grpc.unary_unary_rpc_method_handler(
|
|
121
|
+
servicer.GetCachedObject,
|
|
122
|
+
request_deserializer=denkcache__pb2.GetCachedObjectRequest.FromString,
|
|
123
|
+
response_serializer=denkcache__pb2.GetCachedObjectResponse.SerializeToString,
|
|
124
|
+
),
|
|
125
|
+
}
|
|
126
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
127
|
+
'denkcache.DENKcache', rpc_method_handlers)
|
|
128
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
129
|
+
server.add_registered_method_handlers('denkcache.DENKcache', rpc_method_handlers)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
# This class is part of an EXPERIMENTAL API.
|
|
133
|
+
class DENKcache(object):
|
|
134
|
+
"""Missing associated documentation comment in .proto file."""
|
|
135
|
+
|
|
136
|
+
@staticmethod
|
|
137
|
+
def PingPong(request,
|
|
138
|
+
target,
|
|
139
|
+
options=(),
|
|
140
|
+
channel_credentials=None,
|
|
141
|
+
call_credentials=None,
|
|
142
|
+
insecure=False,
|
|
143
|
+
compression=None,
|
|
144
|
+
wait_for_ready=None,
|
|
145
|
+
timeout=None,
|
|
146
|
+
metadata=None):
|
|
147
|
+
return grpc.experimental.unary_unary(
|
|
148
|
+
request,
|
|
149
|
+
target,
|
|
150
|
+
'/denkcache.DENKcache/PingPong',
|
|
151
|
+
denkcache__pb2.PingPongRequest.SerializeToString,
|
|
152
|
+
denkcache__pb2.PingPongResponse.FromString,
|
|
153
|
+
options,
|
|
154
|
+
channel_credentials,
|
|
155
|
+
insecure,
|
|
156
|
+
call_credentials,
|
|
157
|
+
compression,
|
|
158
|
+
wait_for_ready,
|
|
159
|
+
timeout,
|
|
160
|
+
metadata,
|
|
161
|
+
_registered_method=True)
|
|
162
|
+
|
|
163
|
+
@staticmethod
|
|
164
|
+
def HasObjectCached(request,
|
|
165
|
+
target,
|
|
166
|
+
options=(),
|
|
167
|
+
channel_credentials=None,
|
|
168
|
+
call_credentials=None,
|
|
169
|
+
insecure=False,
|
|
170
|
+
compression=None,
|
|
171
|
+
wait_for_ready=None,
|
|
172
|
+
timeout=None,
|
|
173
|
+
metadata=None):
|
|
174
|
+
return grpc.experimental.unary_unary(
|
|
175
|
+
request,
|
|
176
|
+
target,
|
|
177
|
+
'/denkcache.DENKcache/HasObjectCached',
|
|
178
|
+
denkcache__pb2.HasObjectCachedRequest.SerializeToString,
|
|
179
|
+
denkcache__pb2.HasObjectCachedResponse.FromString,
|
|
180
|
+
options,
|
|
181
|
+
channel_credentials,
|
|
182
|
+
insecure,
|
|
183
|
+
call_credentials,
|
|
184
|
+
compression,
|
|
185
|
+
wait_for_ready,
|
|
186
|
+
timeout,
|
|
187
|
+
metadata,
|
|
188
|
+
_registered_method=True)
|
|
189
|
+
|
|
190
|
+
@staticmethod
|
|
191
|
+
def ObjectExists(request,
|
|
192
|
+
target,
|
|
193
|
+
options=(),
|
|
194
|
+
channel_credentials=None,
|
|
195
|
+
call_credentials=None,
|
|
196
|
+
insecure=False,
|
|
197
|
+
compression=None,
|
|
198
|
+
wait_for_ready=None,
|
|
199
|
+
timeout=None,
|
|
200
|
+
metadata=None):
|
|
201
|
+
return grpc.experimental.unary_unary(
|
|
202
|
+
request,
|
|
203
|
+
target,
|
|
204
|
+
'/denkcache.DENKcache/ObjectExists',
|
|
205
|
+
denkcache__pb2.ObjectExistsRequest.SerializeToString,
|
|
206
|
+
denkcache__pb2.ObjectExistsResponse.FromString,
|
|
207
|
+
options,
|
|
208
|
+
channel_credentials,
|
|
209
|
+
insecure,
|
|
210
|
+
call_credentials,
|
|
211
|
+
compression,
|
|
212
|
+
wait_for_ready,
|
|
213
|
+
timeout,
|
|
214
|
+
metadata,
|
|
215
|
+
_registered_method=True)
|
|
216
|
+
|
|
217
|
+
@staticmethod
|
|
218
|
+
def GetObject(request,
|
|
219
|
+
target,
|
|
220
|
+
options=(),
|
|
221
|
+
channel_credentials=None,
|
|
222
|
+
call_credentials=None,
|
|
223
|
+
insecure=False,
|
|
224
|
+
compression=None,
|
|
225
|
+
wait_for_ready=None,
|
|
226
|
+
timeout=None,
|
|
227
|
+
metadata=None):
|
|
228
|
+
return grpc.experimental.unary_unary(
|
|
229
|
+
request,
|
|
230
|
+
target,
|
|
231
|
+
'/denkcache.DENKcache/GetObject',
|
|
232
|
+
denkcache__pb2.GetObjectRequest.SerializeToString,
|
|
233
|
+
denkcache__pb2.GetObjectResponse.FromString,
|
|
234
|
+
options,
|
|
235
|
+
channel_credentials,
|
|
236
|
+
insecure,
|
|
237
|
+
call_credentials,
|
|
238
|
+
compression,
|
|
239
|
+
wait_for_ready,
|
|
240
|
+
timeout,
|
|
241
|
+
metadata,
|
|
242
|
+
_registered_method=True)
|
|
243
|
+
|
|
244
|
+
@staticmethod
|
|
245
|
+
def GetCachedObject(request,
|
|
246
|
+
target,
|
|
247
|
+
options=(),
|
|
248
|
+
channel_credentials=None,
|
|
249
|
+
call_credentials=None,
|
|
250
|
+
insecure=False,
|
|
251
|
+
compression=None,
|
|
252
|
+
wait_for_ready=None,
|
|
253
|
+
timeout=None,
|
|
254
|
+
metadata=None):
|
|
255
|
+
return grpc.experimental.unary_unary(
|
|
256
|
+
request,
|
|
257
|
+
target,
|
|
258
|
+
'/denkcache.DENKcache/GetCachedObject',
|
|
259
|
+
denkcache__pb2.GetCachedObjectRequest.SerializeToString,
|
|
260
|
+
denkcache__pb2.GetCachedObjectResponse.FromString,
|
|
261
|
+
options,
|
|
262
|
+
channel_credentials,
|
|
263
|
+
insecure,
|
|
264
|
+
call_credentials,
|
|
265
|
+
compression,
|
|
266
|
+
wait_for_ready,
|
|
267
|
+
timeout,
|
|
268
|
+
metadata,
|
|
269
|
+
_registered_method=True)
|
denkproto/modelfile_v1_pb2.py
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
3
4
|
# source: modelfile-v1.proto
|
|
4
|
-
# Protobuf Python Version: 5.
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
5
6
|
"""Generated protocol buffer code."""
|
|
6
7
|
from google.protobuf import descriptor as _descriptor
|
|
7
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
8
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
9
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'modelfile-v1.proto'
|
|
19
|
+
)
|
|
10
20
|
# @@protoc_insertion_point(imports)
|
|
11
21
|
|
|
12
22
|
_sym_db = _symbol_database.Default()
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.68.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in modelfile_v1_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
denkproto/modelfile_v2_pb2.py
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
3
4
|
# source: modelfile-v2.proto
|
|
4
|
-
# Protobuf Python Version: 5.
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
5
6
|
"""Generated protocol buffer code."""
|
|
6
7
|
from google.protobuf import descriptor as _descriptor
|
|
7
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
8
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
9
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'modelfile-v2.proto'
|
|
19
|
+
)
|
|
10
20
|
# @@protoc_insertion_point(imports)
|
|
11
21
|
|
|
12
22
|
_sym_db = _symbol_database.Default()
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.68.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in modelfile_v2_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
denkproto/results_pb2.py
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
3
4
|
# source: results.proto
|
|
4
|
-
# Protobuf Python Version: 5.
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
5
6
|
"""Generated protocol buffer code."""
|
|
6
7
|
from google.protobuf import descriptor as _descriptor
|
|
7
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
8
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
9
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'results.proto'
|
|
19
|
+
)
|
|
10
20
|
# @@protoc_insertion_point(imports)
|
|
11
21
|
|
|
12
22
|
_sym_db = _symbol_database.Default()
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.68.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in results_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
denkproto/DENKbuffer_pb2.py,sha256=sV4v-E4Q4UtlWzyxlhMAzN2fekG3aztf1QD_c64K6vo,10518
|
|
2
|
+
denkproto/DENKbuffer_pb2.pyi,sha256=doI3OWHy475BkkS9V64duMkiVGKQCIuc3n7nGlZcwjE,14171
|
|
3
|
+
denkproto/DENKbuffer_pb2_grpc.py,sha256=-CPJPM4FOqwvwV8-f1iJlD18UD9juVIIHfdWUecuNpc,891
|
|
4
|
+
denkproto/ImageAnalysis_ProtobufMessages_pb2.py,sha256=koos4D2pZUVtuVazJrTjg8zTg17emlFvksRpFgbZ5y8,20050
|
|
5
|
+
denkproto/ImageAnalysis_ProtobufMessages_pb2.pyi,sha256=FQlBvJ-QEhEoHE7DpXBDpLZqg7vhd2EGpiuYUSa5QME,34698
|
|
6
|
+
denkproto/ImageAnalysis_ProtobufMessages_pb2_grpc.py,sha256=l3agtDjgu4jay6P9TRnHhyhJ-7UdoII27ywhw3k84oo,911
|
|
7
|
+
denkproto/__about__.py,sha256=TsfOxJ6mtxlNs5o5L8PelYBmdcIU2HBCYiJjWJmW9pU,23
|
|
8
|
+
denkproto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
denkproto/denkcache_pb2.py,sha256=fC1yKttEX_xzXYv1FVwfXKvy1s1UQJfSV2BVbJ7i0rI,3676
|
|
10
|
+
denkproto/denkcache_pb2.pyi,sha256=g-YX2yqApdYOQktCWbBpW9_5KL5gssx9RIaOA_4gdqA,2525
|
|
11
|
+
denkproto/denkcache_pb2_grpc.py,sha256=hh_hDJeucrVyJp2F3hextU8AfNrxVxDPyhk_pGKfS7E,10357
|
|
12
|
+
denkproto/modelfile_v1_pb2.py,sha256=1vrVofquDm9UCxxHDMtB8icTsNQUaGQJx6J7oa19a4w,6545
|
|
13
|
+
denkproto/modelfile_v1_pb2.pyi,sha256=gjTbWvg48wqGhyJb5CT0pw3yUZGhO_lSZgL7Ia2aPbY,10685
|
|
14
|
+
denkproto/modelfile_v1_pb2_grpc.py,sha256=ov5B2o4JSYbAfcbbdZr55wEzfGlKI02H-tkvXGXqJVg,893
|
|
15
|
+
denkproto/modelfile_v2_pb2.py,sha256=er2c6nmwzqF9tOneX_H7osnLdWBhk1veFcUwmC1TQeM,12225
|
|
16
|
+
denkproto/modelfile_v2_pb2.pyi,sha256=aLcuUMrX3igheXo9Q2JE0fzJPmWsC3e5XqJaQJbvACw,19568
|
|
17
|
+
denkproto/modelfile_v2_pb2_grpc.py,sha256=xiC5FeyZDWcucC3uRJ4kllDJmaRayvrzOKIhvg6o1Tc,893
|
|
18
|
+
denkproto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
denkproto/results_pb2.py,sha256=-a_oQKyJo5rbtBsl94MTF0AmvLamSYrujHg0KFNHHvk,13622
|
|
20
|
+
denkproto/results_pb2.pyi,sha256=xzZPmty65qEz9FzeoGwQlWMpuYxrP-cRFP97Ew8-FFI,25821
|
|
21
|
+
denkproto/results_pb2_grpc.py,sha256=z-4qcDMjjuPRy7lDtECTtReByVEyz3fjIPES9dMlO58,888
|
|
22
|
+
denkproto-1.0.23.dist-info/METADATA,sha256=RboavyTwES58w2tw_BSJ_2j14xSCs9XA29n8BPc2gGg,110
|
|
23
|
+
denkproto-1.0.23.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
24
|
+
denkproto-1.0.23.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
denkproto/DENKbuffer_pb2.py,sha256=v9vQHcgHBSWrdM5Shr1NWvBhmv8gbj5U2OIJVpu835E,10281
|
|
2
|
-
denkproto/DENKbuffer_pb2.pyi,sha256=doI3OWHy475BkkS9V64duMkiVGKQCIuc3n7nGlZcwjE,14171
|
|
3
|
-
denkproto/ImageAnalysis_ProtobufMessages_pb2.py,sha256=EwvHz2S_JAlCu9OBS0FTDLKfvZTDuPZGiWGpQkb_95g,19793
|
|
4
|
-
denkproto/ImageAnalysis_ProtobufMessages_pb2.pyi,sha256=FQlBvJ-QEhEoHE7DpXBDpLZqg7vhd2EGpiuYUSa5QME,34698
|
|
5
|
-
denkproto/__about__.py,sha256=lJ4ivbKbnYXFf2Ku8SMHBz5WRCggnAB-EiaLLFW9B-8,23
|
|
6
|
-
denkproto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
denkproto/modelfile_v1_pb2.py,sha256=6QgDW9odJq4hRRzz4iz0-Smw42bG0pr1LL8ub_DV0pQ,6306
|
|
8
|
-
denkproto/modelfile_v1_pb2.pyi,sha256=gjTbWvg48wqGhyJb5CT0pw3yUZGhO_lSZgL7Ia2aPbY,10685
|
|
9
|
-
denkproto/modelfile_v2_pb2.py,sha256=eoBMxwsAhXFFWVxGeXBV8416riuOAk7tcx3RfJxO6Ts,11986
|
|
10
|
-
denkproto/modelfile_v2_pb2.pyi,sha256=aLcuUMrX3igheXo9Q2JE0fzJPmWsC3e5XqJaQJbvACw,19568
|
|
11
|
-
denkproto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
denkproto/results_pb2.py,sha256=tNf3YsOfQ6CbTloFLTP0dXdzxw6ywMh4cIgOKESZUyE,13388
|
|
13
|
-
denkproto/results_pb2.pyi,sha256=xzZPmty65qEz9FzeoGwQlWMpuYxrP-cRFP97Ew8-FFI,25821
|
|
14
|
-
denkproto-1.0.21.dist-info/METADATA,sha256=xO0kna_N11EUwcangT2_Iei5LIY44aPA5vi1WzLMGWA,110
|
|
15
|
-
denkproto-1.0.21.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
16
|
-
denkproto-1.0.21.dist-info/RECORD,,
|
|
File without changes
|