nucliadb-protos 6.5.1.post4520__py3-none-any.whl → 6.10.0.post5705__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 nucliadb-protos might be problematic. Click here for more details.
- build.py +1 -1
- nucliadb_protos/audit_pb2.py +18 -18
- nucliadb_protos/audit_pb2.pyi +14 -4
- nucliadb_protos/backups_pb2.py +4 -4
- nucliadb_protos/backups_pb2_grpc.py +2 -2
- nucliadb_protos/dataset_pb2.py +4 -4
- nucliadb_protos/dataset_pb2.pyi +3 -0
- nucliadb_protos/kb_usage_pb2.py +10 -10
- nucliadb_protos/kb_usage_pb2.pyi +2 -0
- nucliadb_protos/knowledgebox_pb2.py +80 -82
- nucliadb_protos/knowledgebox_pb2.pyi +8 -8
- nucliadb_protos/migrations_pb2.py +4 -4
- nucliadb_protos/resources_pb2.py +204 -194
- nucliadb_protos/resources_pb2.pyi +100 -15
- nucliadb_protos/standalone_pb2.py +4 -4
- nucliadb_protos/standalone_pb2_grpc.py +2 -2
- nucliadb_protos/train_pb2.py +4 -4
- nucliadb_protos/train_pb2.pyi +3 -7
- nucliadb_protos/train_pb2_grpc.py +2 -2
- nucliadb_protos/train_pb2_grpc.pyi +3 -7
- nucliadb_protos/utils_pb2.py +5 -7
- nucliadb_protos/utils_pb2.pyi +0 -15
- nucliadb_protos/writer_pb2.py +106 -132
- nucliadb_protos/writer_pb2.pyi +35 -258
- nucliadb_protos/writer_pb2_grpc.py +3 -175
- nucliadb_protos/writer_pb2_grpc.pyi +7 -72
- {nucliadb_protos-6.5.1.post4520.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/METADATA +5 -6
- nucliadb_protos-6.10.0.post5705.dist-info/RECORD +37 -0
- {nucliadb_protos-6.5.1.post4520.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/WHEEL +1 -1
- nucliadb_protos-6.5.1.post4520.dist-info/RECORD +0 -37
- {nucliadb_protos-6.5.1.post4520.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/entry_points.txt +0 -0
|
@@ -151,6 +151,9 @@ from nucliadb_protos.resources_pb2 import (
|
|
|
151
151
|
Representation as Representation,
|
|
152
152
|
RowsPreview as RowsPreview,
|
|
153
153
|
Sentence as Sentence,
|
|
154
|
+
SplitMetadata as SplitMetadata,
|
|
155
|
+
SplitsMetadata as SplitsMetadata,
|
|
156
|
+
SyncMetadata as SyncMetadata,
|
|
154
157
|
TEXT as TEXT,
|
|
155
158
|
UserFieldMetadata as UserFieldMetadata,
|
|
156
159
|
UserMetadata as UserMetadata,
|
|
@@ -186,16 +189,11 @@ class WriterStub:
|
|
|
186
189
|
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
187
190
|
]
|
|
188
191
|
|
|
189
|
-
NewEntitiesGroup: grpc.UnaryUnaryMultiCallable[
|
|
190
|
-
nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
|
|
191
|
-
nucliadb_protos.writer_pb2.NewEntitiesGroupResponse,
|
|
192
|
-
]
|
|
193
|
-
"""Entities"""
|
|
194
|
-
|
|
195
192
|
GetEntities: grpc.UnaryUnaryMultiCallable[
|
|
196
193
|
nucliadb_protos.writer_pb2.GetEntitiesRequest,
|
|
197
194
|
nucliadb_protos.writer_pb2.GetEntitiesResponse,
|
|
198
195
|
]
|
|
196
|
+
"""Entities"""
|
|
199
197
|
|
|
200
198
|
GetEntitiesGroup: grpc.UnaryUnaryMultiCallable[
|
|
201
199
|
nucliadb_protos.writer_pb2.GetEntitiesGroupRequest,
|
|
@@ -207,21 +205,6 @@ class WriterStub:
|
|
|
207
205
|
nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse,
|
|
208
206
|
]
|
|
209
207
|
|
|
210
|
-
SetEntities: grpc.UnaryUnaryMultiCallable[
|
|
211
|
-
nucliadb_protos.writer_pb2.SetEntitiesRequest,
|
|
212
|
-
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
213
|
-
]
|
|
214
|
-
|
|
215
|
-
UpdateEntitiesGroup: grpc.UnaryUnaryMultiCallable[
|
|
216
|
-
nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
|
|
217
|
-
nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse,
|
|
218
|
-
]
|
|
219
|
-
|
|
220
|
-
DelEntities: grpc.UnaryUnaryMultiCallable[
|
|
221
|
-
nucliadb_protos.writer_pb2.DelEntitiesRequest,
|
|
222
|
-
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
223
|
-
]
|
|
224
|
-
|
|
225
208
|
Status: grpc.UnaryUnaryMultiCallable[
|
|
226
209
|
nucliadb_protos.writer_pb2.WriterStatusRequest,
|
|
227
210
|
nucliadb_protos.writer_pb2.WriterStatusResponse,
|
|
@@ -273,16 +256,11 @@ class WriterAsyncStub:
|
|
|
273
256
|
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
274
257
|
]
|
|
275
258
|
|
|
276
|
-
NewEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
|
|
277
|
-
nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
|
|
278
|
-
nucliadb_protos.writer_pb2.NewEntitiesGroupResponse,
|
|
279
|
-
]
|
|
280
|
-
"""Entities"""
|
|
281
|
-
|
|
282
259
|
GetEntities: grpc.aio.UnaryUnaryMultiCallable[
|
|
283
260
|
nucliadb_protos.writer_pb2.GetEntitiesRequest,
|
|
284
261
|
nucliadb_protos.writer_pb2.GetEntitiesResponse,
|
|
285
262
|
]
|
|
263
|
+
"""Entities"""
|
|
286
264
|
|
|
287
265
|
GetEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
|
|
288
266
|
nucliadb_protos.writer_pb2.GetEntitiesGroupRequest,
|
|
@@ -294,21 +272,6 @@ class WriterAsyncStub:
|
|
|
294
272
|
nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse,
|
|
295
273
|
]
|
|
296
274
|
|
|
297
|
-
SetEntities: grpc.aio.UnaryUnaryMultiCallable[
|
|
298
|
-
nucliadb_protos.writer_pb2.SetEntitiesRequest,
|
|
299
|
-
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
300
|
-
]
|
|
301
|
-
|
|
302
|
-
UpdateEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
|
|
303
|
-
nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
|
|
304
|
-
nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse,
|
|
305
|
-
]
|
|
306
|
-
|
|
307
|
-
DelEntities: grpc.aio.UnaryUnaryMultiCallable[
|
|
308
|
-
nucliadb_protos.writer_pb2.DelEntitiesRequest,
|
|
309
|
-
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
310
|
-
]
|
|
311
|
-
|
|
312
275
|
Status: grpc.aio.UnaryUnaryMultiCallable[
|
|
313
276
|
nucliadb_protos.writer_pb2.WriterStatusRequest,
|
|
314
277
|
nucliadb_protos.writer_pb2.WriterStatusResponse,
|
|
@@ -368,20 +331,13 @@ class WriterServicer(metaclass=abc.ABCMeta):
|
|
|
368
331
|
context: _ServicerContext,
|
|
369
332
|
) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
|
|
370
333
|
|
|
371
|
-
@abc.abstractmethod
|
|
372
|
-
def NewEntitiesGroup(
|
|
373
|
-
self,
|
|
374
|
-
request: nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
|
|
375
|
-
context: _ServicerContext,
|
|
376
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.NewEntitiesGroupResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.NewEntitiesGroupResponse]]:
|
|
377
|
-
"""Entities"""
|
|
378
|
-
|
|
379
334
|
@abc.abstractmethod
|
|
380
335
|
def GetEntities(
|
|
381
336
|
self,
|
|
382
337
|
request: nucliadb_protos.writer_pb2.GetEntitiesRequest,
|
|
383
338
|
context: _ServicerContext,
|
|
384
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.GetEntitiesResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.GetEntitiesResponse]]:
|
|
339
|
+
) -> typing.Union[nucliadb_protos.writer_pb2.GetEntitiesResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.GetEntitiesResponse]]:
|
|
340
|
+
"""Entities"""
|
|
385
341
|
|
|
386
342
|
@abc.abstractmethod
|
|
387
343
|
def GetEntitiesGroup(
|
|
@@ -397,27 +353,6 @@ class WriterServicer(metaclass=abc.ABCMeta):
|
|
|
397
353
|
context: _ServicerContext,
|
|
398
354
|
) -> typing.Union[nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse]]: ...
|
|
399
355
|
|
|
400
|
-
@abc.abstractmethod
|
|
401
|
-
def SetEntities(
|
|
402
|
-
self,
|
|
403
|
-
request: nucliadb_protos.writer_pb2.SetEntitiesRequest,
|
|
404
|
-
context: _ServicerContext,
|
|
405
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
|
|
406
|
-
|
|
407
|
-
@abc.abstractmethod
|
|
408
|
-
def UpdateEntitiesGroup(
|
|
409
|
-
self,
|
|
410
|
-
request: nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
|
|
411
|
-
context: _ServicerContext,
|
|
412
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse]]: ...
|
|
413
|
-
|
|
414
|
-
@abc.abstractmethod
|
|
415
|
-
def DelEntities(
|
|
416
|
-
self,
|
|
417
|
-
request: nucliadb_protos.writer_pb2.DelEntitiesRequest,
|
|
418
|
-
context: _ServicerContext,
|
|
419
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
|
|
420
|
-
|
|
421
356
|
@abc.abstractmethod
|
|
422
357
|
def Status(
|
|
423
358
|
self,
|
{nucliadb_protos-6.5.1.post4520.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/METADATA
RENAMED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nucliadb_protos
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.10.0.post5705
|
|
4
4
|
Summary: Protobuf definitions for nucliadb
|
|
5
5
|
Author-Email: Nuclia <nucliadb@nuclia.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Classifier: Development Status :: 4 - Beta
|
|
8
8
|
Classifier: Programming Language :: Python
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
10
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -14,8 +13,8 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
14
13
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
15
14
|
Project-URL: Homepage, https://nuclia.com
|
|
16
15
|
Project-URL: Repository, https://github.com/nuclia/nucliadb
|
|
17
|
-
Requires-Python: <4,>=3.
|
|
18
|
-
Requires-Dist: protobuf
|
|
19
|
-
|
|
20
|
-
Requires-Dist:
|
|
16
|
+
Requires-Python: <4,>=3.10
|
|
17
|
+
Requires-Dist: protobuf<7.0.0,>=6.31.1
|
|
18
|
+
Provides-Extra: grpc
|
|
19
|
+
Requires-Dist: grpcio>=1.76.0; extra == "grpc"
|
|
21
20
|
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.gitignore,sha256=zbyuFRBda3geYggTx5x-hodA1OnMU85vX8u8Ejh630s,2
|
|
2
|
+
build.py,sha256=6HYEavsyZ_2Ox-omEvVOaUPqrFLFR8aG3L_Gvm9Aibk,1980
|
|
3
|
+
nucliadb_protos-6.10.0.post5705.dist-info/METADATA,sha256=8o9G9VtgpQQ-tb-IveP5T1eMcufjBfgc5PBUtoQ9-Z0,791
|
|
4
|
+
nucliadb_protos-6.10.0.post5705.dist-info/WHEEL,sha256=tsUv_t7BDeJeRHaSrczbGeuK-TtDpGsWi_JfpzD255I,90
|
|
5
|
+
nucliadb_protos-6.10.0.post5705.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
6
|
+
nucliadb_protos/audit_pb2.py,sha256=8d6gSTgXc1s3GFclf389S0C96OAN2CXykPpOjtxQ5-E,8908
|
|
7
|
+
nucliadb_protos/audit_pb2.pyi,sha256=kIPFiMONnk5dO1YpPXsX4euADG8JR6waHfESSX5qQ7g,22719
|
|
8
|
+
nucliadb_protos/backups_pb2.py,sha256=VvfDZQoMkhLJ376Kxptsei9421ookdpnAxnUz5SV9Rk,3676
|
|
9
|
+
nucliadb_protos/backups_pb2.pyi,sha256=OU3jM6utKOuYS0sEqP6ajEEMkl-dYQv8muJZ21-oX7I,6938
|
|
10
|
+
nucliadb_protos/backups_pb2_grpc.py,sha256=IJF5ER24ztwzjtFTuUX05ExXMDFRcb3a25X9EPOb4xM,903
|
|
11
|
+
nucliadb_protos/backups_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
12
|
+
nucliadb_protos/dataset_pb2.py,sha256=4qfCreuTv9hKNeBn_g66U0Pb9n9a2rULwS7POMzpCPA,7648
|
|
13
|
+
nucliadb_protos/dataset_pb2.pyi,sha256=SKYDJSsCqHg9xl0WIaMrqzY-4-0s0i5oOS6cTinVOWE,22218
|
|
14
|
+
nucliadb_protos/kb_usage_pb2.py,sha256=KNpXTXep_D3nySMbeO-CoOauJjctS8fx5zuLZZnKAfQ,6393
|
|
15
|
+
nucliadb_protos/kb_usage_pb2.pyi,sha256=gsmirQlQYQX0QlMTcouOFPiR8PaBjm8fQU24tritPTA,16412
|
|
16
|
+
nucliadb_protos/knowledgebox_pb2.py,sha256=A7Y4WKUooAw98qsvIDgI5oTUvAKdwEBv03s1nXutN3s,16639
|
|
17
|
+
nucliadb_protos/knowledgebox_pb2.pyi,sha256=ceTOGBdl8lyMVyadYAGFms2VsNloh4qQ9KQxHjZy9d0,40910
|
|
18
|
+
nucliadb_protos/migrations_pb2.py,sha256=FBB2yxjIb_MX1TkI6ICJWNQFK-WIXrFSBbvaYheJaoY,1407
|
|
19
|
+
nucliadb_protos/migrations_pb2.pyi,sha256=K1doWaVBMDlpF1pHBdZd97AZKBKynJz6C7uHDYhaJs4,844
|
|
20
|
+
nucliadb_protos/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
nucliadb_protos/resources_pb2.py,sha256=jBN53rcIoQPIhIfiQ2rdh_ff6iNINj1ra-BZ-CnxRnw,38406
|
|
22
|
+
nucliadb_protos/resources_pb2.pyi,sha256=aYcGC-bz5zjKEY3Sw10zjnerqEDl4i10BVZWmu0Iq2c,100878
|
|
23
|
+
nucliadb_protos/standalone_pb2.py,sha256=PxTfgiM_Zs8QyprY5U3OEn51C36YLQWOaNim6hctlTA,2447
|
|
24
|
+
nucliadb_protos/standalone_pb2.pyi,sha256=t5qzk1ZPg-98lAqDIsp3aE_8fzMOtI0J2Emex1b79xg,2533
|
|
25
|
+
nucliadb_protos/standalone_pb2_grpc.py,sha256=tnfokmouDnQsdGZMquNAUWcl8Q8dM4oBBcBBWMSBFGA,5594
|
|
26
|
+
nucliadb_protos/standalone_pb2_grpc.pyi,sha256=0gHvBKQW5abeoK64pVfBekpK1o_lMg89gPdd3ar8Rco,2145
|
|
27
|
+
nucliadb_protos/train_pb2.py,sha256=SLNg829Jxequ3D--fxLPGHCE2BNmx7Bd37krBm2sL4Q,12484
|
|
28
|
+
nucliadb_protos/train_pb2.pyi,sha256=XtGWvrZZ2cSUVi5I5om-R_KzqBFDVLf_KxNnJEC5tyk,28104
|
|
29
|
+
nucliadb_protos/train_pb2_grpc.py,sha256=GwrVAoe71jMeV3iGzbQJ2uPqsOhXcNhMF5qBCYoiB14,16142
|
|
30
|
+
nucliadb_protos/train_pb2_grpc.pyi,sha256=kMUHpEER1iEo57VVlGHiey_Qa5LivhUUkdi6x1O8Cng,11774
|
|
31
|
+
nucliadb_protos/utils_pb2.py,sha256=MdPeSoU6smU-Twldgf2UM_1Rw317Wh6B5-uEP9X1pyU,6887
|
|
32
|
+
nucliadb_protos/utils_pb2.pyi,sha256=gzyEM2t9ttnNyh_nciKfWDytsW8n3PmiQhacGXDyFK4,18339
|
|
33
|
+
nucliadb_protos/writer_pb2.py,sha256=rSgiPqxTix_hgGxXq4L50DIQB38dmb94Dq2eWjpc6FE,24002
|
|
34
|
+
nucliadb_protos/writer_pb2.pyi,sha256=90gR8hVxQ-fs40eAHqhmOMDXIZP5EJa69cIAJBvzlN4,61977
|
|
35
|
+
nucliadb_protos/writer_pb2_grpc.py,sha256=ca1SxDoGlUJmQdmTrYw83ajun511GtgiJn4R3tiHYyQ,25838
|
|
36
|
+
nucliadb_protos/writer_pb2_grpc.pyi,sha256=gbOUJZ3ftN3dNMEc7Xvxy1k6Ms-PQcKldrVC1WUICC8,15010
|
|
37
|
+
nucliadb_protos-6.10.0.post5705.dist-info/RECORD,,
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
.gitignore,sha256=zbyuFRBda3geYggTx5x-hodA1OnMU85vX8u8Ejh630s,2
|
|
2
|
-
build.py,sha256=h-aaVtinmScEf_OztPYidglweRx8SEu5yrFmu6NGDt4,1988
|
|
3
|
-
nucliadb_protos-6.5.1.post4520.dist-info/METADATA,sha256=Qz3ptk_BNXSXTEBg_XXf3GgYOQJo5tPAc3KNslUfDwo,828
|
|
4
|
-
nucliadb_protos-6.5.1.post4520.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
|
5
|
-
nucliadb_protos-6.5.1.post4520.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
6
|
-
nucliadb_protos/audit_pb2.py,sha256=iluasDn-ToqTDyWujXkqgvoYeE2FxYjvUjVasN-ZCQ0,8707
|
|
7
|
-
nucliadb_protos/audit_pb2.pyi,sha256=qcZDmFiUT6Z69-H6DKOpHfTTgjVU7VzEaU1rkGeLBSQ,21575
|
|
8
|
-
nucliadb_protos/backups_pb2.py,sha256=CYNHQ6u2m6LBTuzdCwvc3L3SotD2dbOE1w8D_0CwidU,3676
|
|
9
|
-
nucliadb_protos/backups_pb2.pyi,sha256=OU3jM6utKOuYS0sEqP6ajEEMkl-dYQv8muJZ21-oX7I,6938
|
|
10
|
-
nucliadb_protos/backups_pb2_grpc.py,sha256=rfQlAMHvnbTkUr-3AG1GdBkW8oN37mdYTUA50rWuOaA,904
|
|
11
|
-
nucliadb_protos/backups_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
|
|
12
|
-
nucliadb_protos/dataset_pb2.py,sha256=kci_RjD_fQlfS7_lZKypmNruKkrVA_hUGTFkMv2Tg74,7648
|
|
13
|
-
nucliadb_protos/dataset_pb2.pyi,sha256=p4foSgu_u2taIL9nf-A2KtsRG8LmQTu0HC5rMXRefhs,22110
|
|
14
|
-
nucliadb_protos/kb_usage_pb2.py,sha256=8T2t7lF-iWBFPWc2bs8tspDB9MR8jQEqDuus-_9RYp0,6360
|
|
15
|
-
nucliadb_protos/kb_usage_pb2.pyi,sha256=egxQoXOLDUcuOpYnkNIyk698rKGeopRBtKX6brhglH8,16321
|
|
16
|
-
nucliadb_protos/knowledgebox_pb2.py,sha256=_8WeoW1NZTHyxryOrvUx7sMaSVWFYWqXEvl2_dpfgds,16855
|
|
17
|
-
nucliadb_protos/knowledgebox_pb2.pyi,sha256=gPpknorc6L2B0_-SzVKG8hOpgxKHGFMFINXqHgGiI-c,40963
|
|
18
|
-
nucliadb_protos/migrations_pb2.py,sha256=SRLR8yH9stiYQJ6fLFBgsj7h_5quH6OEx8Y1EtyfQBY,1407
|
|
19
|
-
nucliadb_protos/migrations_pb2.pyi,sha256=K1doWaVBMDlpF1pHBdZd97AZKBKynJz6C7uHDYhaJs4,844
|
|
20
|
-
nucliadb_protos/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
nucliadb_protos/resources_pb2.py,sha256=4gLft_XVgUcAPJxq9KRD_tjkyDQPZ8SKMpRHywXjSiY,37088
|
|
22
|
-
nucliadb_protos/resources_pb2.pyi,sha256=WUvfTWbTcv4DsPEl7nRga0ic65tGxa-YHqoRpUUY5yw,97345
|
|
23
|
-
nucliadb_protos/standalone_pb2.py,sha256=h0-EuNCarB-RBqmqJMt4GNnXDxd0bbHTdW2q16hsdiQ,2447
|
|
24
|
-
nucliadb_protos/standalone_pb2.pyi,sha256=t5qzk1ZPg-98lAqDIsp3aE_8fzMOtI0J2Emex1b79xg,2533
|
|
25
|
-
nucliadb_protos/standalone_pb2_grpc.py,sha256=Fm_jw7C1fkpMz9VFIuLHE1y6UxQpFlzSmJBzthtgb-c,5595
|
|
26
|
-
nucliadb_protos/standalone_pb2_grpc.pyi,sha256=0gHvBKQW5abeoK64pVfBekpK1o_lMg89gPdd3ar8Rco,2145
|
|
27
|
-
nucliadb_protos/train_pb2.py,sha256=H-ORaT2z0W97_eXok1sojjnlueXhc1T6OIfIPeHT634,12484
|
|
28
|
-
nucliadb_protos/train_pb2.pyi,sha256=cQ0_jDTdALF-_KvN3VAR1K-77A-uNMuusXu8Z60KBz8,28378
|
|
29
|
-
nucliadb_protos/train_pb2_grpc.py,sha256=IZAwhOzKrbrVZSq55_45TIm3BywGmlWmWVM3iadhQl8,16143
|
|
30
|
-
nucliadb_protos/train_pb2_grpc.pyi,sha256=liTLwIyE9JuJpJZL4c0g4M2oF89u6mBvSpV8Ik1Upfk,12048
|
|
31
|
-
nucliadb_protos/utils_pb2.py,sha256=DjWGFcZquXuJoG-wRSMxKUT0OExc9NaYvoT_w4lqFbc,7076
|
|
32
|
-
nucliadb_protos/utils_pb2.pyi,sha256=_ebOQU711CHIpXRQ9nJ4Z1I410wVVSYmcrgU1Cw1B-o,18970
|
|
33
|
-
nucliadb_protos/writer_pb2.py,sha256=H24hp95ajSr4MG3Ucn-X46z2OZ_-DxIj0h4TyT_7CoE,28208
|
|
34
|
-
nucliadb_protos/writer_pb2.pyi,sha256=cnax2hQQioViKtrMbt5qCpc5NnmwAxexOhHBcxo4Oyg,71134
|
|
35
|
-
nucliadb_protos/writer_pb2_grpc.py,sha256=08SyrUd6XU-JepqNQYtyf1S0-UWRIrXLTC32CJyP0cE,33238
|
|
36
|
-
nucliadb_protos/writer_pb2_grpc.pyi,sha256=U1_V1kRdMMUL2XbYcRQ_N9Pa-V0W9AelXZ9Lo1sUO2E,17564
|
|
37
|
-
nucliadb_protos-6.5.1.post4520.dist-info/RECORD,,
|
|
File without changes
|