cognite-neat 0.107.0__py3-none-any.whl → 0.108.0__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 cognite-neat might be problematic. Click here for more details.
- cognite/neat/_constants.py +35 -1
- cognite/neat/_graph/_shared.py +4 -0
- cognite/neat/_graph/extractors/_classic_cdf/_base.py +115 -14
- cognite/neat/_graph/extractors/_classic_cdf/_classic.py +83 -6
- cognite/neat/_graph/extractors/_classic_cdf/_relationships.py +48 -12
- cognite/neat/_graph/extractors/_classic_cdf/_sequences.py +19 -1
- cognite/neat/_graph/extractors/_dms.py +162 -47
- cognite/neat/_graph/extractors/_dms_graph.py +54 -4
- cognite/neat/_graph/extractors/_mock_graph_generator.py +1 -1
- cognite/neat/_graph/extractors/_rdf_file.py +3 -2
- cognite/neat/_graph/loaders/__init__.py +1 -3
- cognite/neat/_graph/loaders/_rdf2dms.py +20 -10
- cognite/neat/_graph/queries/_base.py +140 -84
- cognite/neat/_graph/queries/_construct.py +1 -1
- cognite/neat/_graph/transformers/__init__.py +3 -1
- cognite/neat/_graph/transformers/_value_type.py +54 -3
- cognite/neat/_issues/errors/_resources.py +1 -1
- cognite/neat/_issues/warnings/__init__.py +0 -2
- cognite/neat/_issues/warnings/_models.py +1 -1
- cognite/neat/_issues/warnings/_properties.py +0 -8
- cognite/neat/_rules/catalog/classic_model.xlsx +0 -0
- cognite/neat/_rules/exporters/_rules2instance_template.py +3 -3
- cognite/neat/_rules/importers/__init__.py +3 -1
- cognite/neat/_rules/importers/_dtdl2rules/spec.py +1 -2
- cognite/neat/_rules/importers/_rdf/__init__.py +2 -2
- cognite/neat/_rules/importers/_rdf/_base.py +2 -2
- cognite/neat/_rules/importers/_rdf/_inference2rules.py +241 -18
- cognite/neat/_rules/models/_base_rules.py +13 -3
- cognite/neat/_rules/models/dms/_rules.py +1 -8
- cognite/neat/_rules/models/dms/_rules_input.py +4 -0
- cognite/neat/_rules/models/information/_rules_input.py +5 -0
- cognite/neat/_rules/transformers/__init__.py +6 -0
- cognite/neat/_rules/transformers/_converters.py +98 -7
- cognite/neat/_session/_base.py +55 -4
- cognite/neat/_session/_drop.py +5 -1
- cognite/neat/_session/_inspect.py +3 -2
- cognite/neat/_session/_read.py +61 -14
- cognite/neat/_session/_set.py +27 -0
- cognite/neat/_session/_show.py +4 -4
- cognite/neat/_session/_state.py +8 -4
- cognite/neat/_session/_to.py +4 -1
- cognite/neat/_session/_wizard.py +1 -1
- cognite/neat/_session/exceptions.py +2 -1
- cognite/neat/_store/_graph_store.py +287 -133
- cognite/neat/_store/_rules_store.py +108 -1
- cognite/neat/_utils/auth.py +1 -1
- cognite/neat/_version.py +1 -1
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.108.0.dist-info}/METADATA +1 -1
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.108.0.dist-info}/RECORD +52 -52
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.108.0.dist-info}/LICENSE +0 -0
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.108.0.dist-info}/WHEEL +0 -0
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.108.0.dist-info}/entry_points.txt +0 -0
|
@@ -8,6 +8,7 @@ from pathlib import Path
|
|
|
8
8
|
from typing import Any, cast
|
|
9
9
|
|
|
10
10
|
import rdflib
|
|
11
|
+
from cognite.client import data_modeling as dm
|
|
11
12
|
|
|
12
13
|
from cognite.neat._client import NeatClient
|
|
13
14
|
from cognite.neat._constants import DEFAULT_NAMESPACE
|
|
@@ -68,10 +69,12 @@ class NeatRulesStore:
|
|
|
68
69
|
|
|
69
70
|
def import_(self, importer: BaseImporter) -> IssueList:
|
|
70
71
|
agent = importer.agent
|
|
72
|
+
|
|
71
73
|
source_entity = Entity(
|
|
72
74
|
was_attributed_to=UNKNOWN_AGENT,
|
|
73
75
|
id_=importer.source_uri,
|
|
74
76
|
)
|
|
77
|
+
|
|
75
78
|
return self._do_activity(importer.to_rules, agent, source_entity, importer.description)[1]
|
|
76
79
|
|
|
77
80
|
def import_graph(self, extractor: KnowledgeGraphExtractor) -> IssueList:
|
|
@@ -269,6 +272,55 @@ class NeatRulesStore:
|
|
|
269
272
|
result, _ = self._do_activity(lambda: action(rules), agent, last_entity, description)
|
|
270
273
|
return result
|
|
271
274
|
|
|
275
|
+
def _update_source_entity(self, source_entity: Entity, result: Rules, issue_list: IssueList) -> Entity:
|
|
276
|
+
"""Update source entity to keep the unbroken provenance chain of changes."""
|
|
277
|
+
|
|
278
|
+
# Case 1: Store not empty, source of imported rules is not known
|
|
279
|
+
if not (source_id := self._get_source_id(result)):
|
|
280
|
+
raise NeatValueError(
|
|
281
|
+
"The data model to be read to the current NEAT session"
|
|
282
|
+
" has no relation to the session content."
|
|
283
|
+
" Import will be skipped."
|
|
284
|
+
"\n\nSuggestions:\n\t(1) Start a new NEAT session and "
|
|
285
|
+
"import the data model there."
|
|
286
|
+
)
|
|
287
|
+
|
|
288
|
+
# We are taking target entity as it is the entity that produce rules
|
|
289
|
+
# which were updated by activities outside of the rules tore
|
|
290
|
+
update_source_entity: Entity | None = self.provenance.target_entity(source_id)
|
|
291
|
+
|
|
292
|
+
# Case 2: source of imported rules not in rules_store
|
|
293
|
+
if not update_source_entity:
|
|
294
|
+
raise NeatValueError(
|
|
295
|
+
"The source of the data model being imported is not in"
|
|
296
|
+
" the content of this NEAT session."
|
|
297
|
+
" Import will be skipped."
|
|
298
|
+
"\n\nSuggestions:"
|
|
299
|
+
"\n\t(1) Start a new NEAT session and import the data model source"
|
|
300
|
+
"\n\t(2) Then import the data model itself"
|
|
301
|
+
)
|
|
302
|
+
|
|
303
|
+
# Case 3: source_entity in rules_store and but it is not the latest entity
|
|
304
|
+
if self.provenance[-1].target_entity.id_ != update_source_entity.id_:
|
|
305
|
+
raise NeatValueError(
|
|
306
|
+
"Source of imported data model is not the latest entity in the data model provenance."
|
|
307
|
+
"Pruning required to set the source entity to the latest entity in the provenance."
|
|
308
|
+
)
|
|
309
|
+
|
|
310
|
+
# Case 4: source_entity in rules_store and it is not the latest target entity
|
|
311
|
+
if self.provenance[-1].target_entity.id_ != update_source_entity.id_:
|
|
312
|
+
raise NeatValueError(
|
|
313
|
+
"Source of imported rules is not the latest entity in the provenance."
|
|
314
|
+
"Pruning required to set the source entity to the latest entity in the provenance."
|
|
315
|
+
)
|
|
316
|
+
|
|
317
|
+
# Case 5: source_entity in rules_store and it is the latest entity
|
|
318
|
+
# Here we need to check if the source and target entities are identical
|
|
319
|
+
# if they are ... we should raise an error and skip importing
|
|
320
|
+
# for now we will just return the source entity that we managed to extract
|
|
321
|
+
|
|
322
|
+
return update_source_entity or source_entity
|
|
323
|
+
|
|
272
324
|
def _do_activity(
|
|
273
325
|
self, action: Callable[[], Rules | None], agent: Agent, source_entity: Entity, description: str
|
|
274
326
|
) -> tuple[Any, IssueList]:
|
|
@@ -278,6 +330,18 @@ class NeatRulesStore:
|
|
|
278
330
|
result = action()
|
|
279
331
|
end = datetime.now(timezone.utc)
|
|
280
332
|
|
|
333
|
+
# This handles import activity that needs to be properly registered
|
|
334
|
+
# hence we check if class of action is subclass of BaseImporter
|
|
335
|
+
# and only if the store is not empty !
|
|
336
|
+
if (
|
|
337
|
+
hasattr(action, "__self__")
|
|
338
|
+
and issubclass(action.__self__.__class__, BaseImporter)
|
|
339
|
+
and source_entity.was_attributed_to == UNKNOWN_AGENT
|
|
340
|
+
and result
|
|
341
|
+
and not self.empty
|
|
342
|
+
):
|
|
343
|
+
source_entity = self._update_source_entity(source_entity, result, issue_list)
|
|
344
|
+
|
|
281
345
|
activity = Activity(
|
|
282
346
|
was_associated_with=agent,
|
|
283
347
|
ended_at_time=end,
|
|
@@ -289,6 +353,7 @@ class NeatRulesStore:
|
|
|
289
353
|
was_generated_by=activity,
|
|
290
354
|
result=result,
|
|
291
355
|
issues=issue_list,
|
|
356
|
+
# here id can be bumped in case id already exists
|
|
292
357
|
id_=self._create_id(result),
|
|
293
358
|
)
|
|
294
359
|
change = Change(
|
|
@@ -302,23 +367,57 @@ class NeatRulesStore:
|
|
|
302
367
|
self.provenance.append(change)
|
|
303
368
|
return result, issue_list
|
|
304
369
|
|
|
370
|
+
def _get_source_id(self, result: Rules) -> rdflib.URIRef | None:
|
|
371
|
+
"""Return the source of the result."""
|
|
372
|
+
|
|
373
|
+
if isinstance(result, ReadRules) and result.rules is not None and result.rules.metadata.source_id:
|
|
374
|
+
return rdflib.URIRef(result.rules.metadata.source_id)
|
|
375
|
+
if isinstance(result, VerifiedRules):
|
|
376
|
+
return result.metadata.source_id
|
|
377
|
+
return None
|
|
378
|
+
|
|
379
|
+
def _get_data_model_id(self, result: Rules) -> dm.DataModelId | None:
|
|
380
|
+
"""Return the source of the result."""
|
|
381
|
+
|
|
382
|
+
if isinstance(result, ReadRules) and result.rules is not None:
|
|
383
|
+
return result.rules.metadata.as_data_model_id()
|
|
384
|
+
if isinstance(result, VerifiedRules):
|
|
385
|
+
return result.metadata.as_data_model_id()
|
|
386
|
+
return None
|
|
387
|
+
|
|
305
388
|
def _create_id(self, result: Any) -> rdflib.URIRef:
|
|
306
389
|
identifier: rdflib.URIRef
|
|
390
|
+
|
|
391
|
+
# Case 1: Unsuccessful activity -> target entity will be EMPTY_ENTITY
|
|
307
392
|
if result is None:
|
|
308
393
|
identifier = EMPTY_ENTITY.id_
|
|
394
|
+
|
|
395
|
+
# Case 2: Result ReadRules
|
|
309
396
|
elif isinstance(result, ReadRules):
|
|
397
|
+
# Case 2.1: ReadRules with no rules -> target entity will be EMPTY_ENTITY
|
|
310
398
|
if result.rules is None:
|
|
311
399
|
identifier = EMPTY_ENTITY.id_
|
|
400
|
+
|
|
401
|
+
# Case 2.2: ReadRules with rules identified by metadata.identifier
|
|
312
402
|
else:
|
|
313
403
|
identifier = result.rules.metadata.identifier
|
|
404
|
+
|
|
405
|
+
# Case 3: Result VerifiedRules, identifier will be metadata.identifier
|
|
314
406
|
elif isinstance(result, VerifiedRules):
|
|
315
407
|
identifier = result.metadata.identifier
|
|
408
|
+
|
|
409
|
+
# Case 4: Defaults to unknown entity
|
|
316
410
|
else:
|
|
317
411
|
identifier = DEFAULT_NAMESPACE["unknown-entity"]
|
|
318
412
|
|
|
413
|
+
# Here we check if the identifier is already in the iteration dictionary
|
|
414
|
+
# to track specific changes to the same entity, if it is we increment the iteration
|
|
319
415
|
if identifier not in self._iteration_by_id:
|
|
320
416
|
self._iteration_by_id[identifier] = 1
|
|
321
417
|
return identifier
|
|
418
|
+
|
|
419
|
+
# If the identifier is already in the iteration dictionary we increment the iteration
|
|
420
|
+
# and update identifier to include the iteration number
|
|
322
421
|
self._iteration_by_id[identifier] += 1
|
|
323
422
|
return identifier + f"/Iteration_{self._iteration_by_id[identifier]}"
|
|
324
423
|
|
|
@@ -391,10 +490,18 @@ class NeatRulesStore:
|
|
|
391
490
|
def last_issues(self) -> IssueList:
|
|
392
491
|
if not self.provenance:
|
|
393
492
|
raise NeatValueError("No issues found in the provenance.")
|
|
394
|
-
|
|
493
|
+
last_change = self.provenance[-1]
|
|
494
|
+
if last_change.target_entity.issues:
|
|
495
|
+
return last_change.target_entity.issues
|
|
496
|
+
return last_change.source_entity.issues
|
|
395
497
|
|
|
396
498
|
@property
|
|
397
499
|
def last_outcome(self) -> UploadResultList:
|
|
398
500
|
if self._last_outcome is not None:
|
|
399
501
|
return self._last_outcome
|
|
400
502
|
raise NeatValueError("No outcome found in the provenance.")
|
|
503
|
+
|
|
504
|
+
@property
|
|
505
|
+
def empty(self) -> bool:
|
|
506
|
+
"""Check if the store is empty."""
|
|
507
|
+
return not self.provenance
|
cognite/neat/_utils/auth.py
CHANGED
|
@@ -249,7 +249,7 @@ class EnvironmentVariables:
|
|
|
249
249
|
is_optional = hasattr(self, field.name.lower())
|
|
250
250
|
if is_optional and first_optional:
|
|
251
251
|
lines.append(
|
|
252
|
-
"# The below variables are the defaults, they are automatically
|
|
252
|
+
"# The below variables are the defaults, they are automatically constructed unless they are set."
|
|
253
253
|
)
|
|
254
254
|
first_optional = False
|
|
255
255
|
name = field.name.lower() if is_optional else field.name
|
cognite/neat/_version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = "0.
|
|
1
|
+
__version__ = "0.108.0"
|
|
2
2
|
__engine__ = "^2.0.3"
|
|
@@ -10,9 +10,9 @@ cognite/neat/_client/data_classes/neat_sequence.py,sha256=QZWSfWnwk6KlYJvsInco4W
|
|
|
10
10
|
cognite/neat/_client/data_classes/schema.py,sha256=uD8ExxEiIP3zhK4b--Q5fND-vmcC05a9WU5ItLsqG88,23179
|
|
11
11
|
cognite/neat/_client/testing.py,sha256=c5ADJkRJFYGlJVQz-uPqxKExKXT297pxKh_ka4oGBjs,1082
|
|
12
12
|
cognite/neat/_config.py,sha256=WT1BS8uADcFvGoUYOOfwFOVq_VBl472TisdoA3wLick,280
|
|
13
|
-
cognite/neat/_constants.py,sha256=
|
|
13
|
+
cognite/neat/_constants.py,sha256=nAuukl3nI5h6F55vA5xZZ7G3L_JCfLOk2MLuSJmBnpY,5734
|
|
14
14
|
cognite/neat/_graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
cognite/neat/_graph/_shared.py,sha256=
|
|
15
|
+
cognite/neat/_graph/_shared.py,sha256=6avH6mtjxjHI7JDLkXwICxGvZwooGBr6APs1_w1To-A,940
|
|
16
16
|
cognite/neat/_graph/_tracking/__init__.py,sha256=WOwsYieZtCW-iW15YkxUFrfKVVdLWdXHOGGStTwvE8A,91
|
|
17
17
|
cognite/neat/_graph/_tracking/base.py,sha256=qU7DQL_aeG22jS-uE3G17B1WL1sOOxHt-eR0XlTZngs,821
|
|
18
18
|
cognite/neat/_graph/_tracking/log.py,sha256=_MGgMWxPDfKG4kbX-YL1UO0Lfq8nbcjyFFJeqN5wpuc,928
|
|
@@ -24,49 +24,49 @@ cognite/neat/_graph/extractors/__init__.py,sha256=T3G8U8ZYHSW0KA8JNArcFgY7wRk51S
|
|
|
24
24
|
cognite/neat/_graph/extractors/_base.py,sha256=qQE-fl3f1hfqZg5KLF3zLHybP0u8ofRKf4jk7pEHnl4,1907
|
|
25
25
|
cognite/neat/_graph/extractors/_classic_cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
cognite/neat/_graph/extractors/_classic_cdf/_assets.py,sha256=9WVFrAtUFAp_AAlb26Rtt2Axz9xsPQYetg7SKVrNCr4,1474
|
|
27
|
-
cognite/neat/_graph/extractors/_classic_cdf/_base.py,sha256=
|
|
28
|
-
cognite/neat/_graph/extractors/_classic_cdf/_classic.py,sha256=
|
|
27
|
+
cognite/neat/_graph/extractors/_classic_cdf/_base.py,sha256=PaJg-E2LepmEf4OehSR0Z2dwuSRBIsidtE4nITMNsig,16311
|
|
28
|
+
cognite/neat/_graph/extractors/_classic_cdf/_classic.py,sha256=5lmBm-HWuxf0I2VFBe0R4Xb5hVpV4HI-kNgAdU20GuU,18503
|
|
29
29
|
cognite/neat/_graph/extractors/_classic_cdf/_data_sets.py,sha256=xRFv9pVFgIMTZ45E8teMC0Ynku_CuZdcZkVCbhPuPBk,1294
|
|
30
30
|
cognite/neat/_graph/extractors/_classic_cdf/_events.py,sha256=B8hRoMAg8GQvApjxals5PfPyjmdPO93U3nj_G7g0kDQ,1394
|
|
31
31
|
cognite/neat/_graph/extractors/_classic_cdf/_files.py,sha256=Q816cVQ9qS7Art66HJfErL2OV7MxH_eSIG7bJ8_HJ7Q,1406
|
|
32
32
|
cognite/neat/_graph/extractors/_classic_cdf/_labels.py,sha256=7guTZdGFT1r7ItE2VNgXwbBZ1y_005oB3fg1XbwT7WQ,2083
|
|
33
|
-
cognite/neat/_graph/extractors/_classic_cdf/_relationships.py,sha256=
|
|
34
|
-
cognite/neat/_graph/extractors/_classic_cdf/_sequences.py,sha256=
|
|
33
|
+
cognite/neat/_graph/extractors/_classic_cdf/_relationships.py,sha256=9fNZaQCa9SyPtjRPZXrFlCnjcIXXomvc65eHrCudxCQ,4842
|
|
34
|
+
cognite/neat/_graph/extractors/_classic_cdf/_sequences.py,sha256=5b2CGTJHL03C2avIpuyvps017SwMDtogrZDtc1Tdazo,11417
|
|
35
35
|
cognite/neat/_graph/extractors/_classic_cdf/_timeseries.py,sha256=6CmmxWWG2IErfNKOPhsjQ5wSOTUZZMjulpaRbHj0Q-g,1560
|
|
36
36
|
cognite/neat/_graph/extractors/_dexpi.py,sha256=SFWnKXYpQToWag9aoX8fxISNa9b8KlqjZnkwI18BzNY,9431
|
|
37
|
-
cognite/neat/_graph/extractors/_dms.py,sha256=
|
|
38
|
-
cognite/neat/_graph/extractors/_dms_graph.py,sha256=
|
|
37
|
+
cognite/neat/_graph/extractors/_dms.py,sha256=2IBQzQ-UAbdmqykPAhRJAnf5oYh0A_Ha5dLLecj8-NM,14045
|
|
38
|
+
cognite/neat/_graph/extractors/_dms_graph.py,sha256=Da34mY1gl457iIIFbCDejOXsIlwZSG3GpJt4M5dCMbw,8047
|
|
39
39
|
cognite/neat/_graph/extractors/_iodd.py,sha256=nMSLmtgvxLrQJMA5NECF1OCp4Bcv0Vq0WsNv8X9Oj1k,18458
|
|
40
|
-
cognite/neat/_graph/extractors/_mock_graph_generator.py,sha256=
|
|
41
|
-
cognite/neat/_graph/extractors/_rdf_file.py,sha256=
|
|
42
|
-
cognite/neat/_graph/loaders/__init__.py,sha256=
|
|
40
|
+
cognite/neat/_graph/extractors/_mock_graph_generator.py,sha256=RPYrNsg30oqAkaEwX_rKuSuzPirKMdezLWBsKyyz55U,15421
|
|
41
|
+
cognite/neat/_graph/extractors/_rdf_file.py,sha256=vz145N1_ZDAlAzCuMiv2z5-7Z4nG2fciLMnl9OpEc3M,2857
|
|
42
|
+
cognite/neat/_graph/loaders/__init__.py,sha256=XS6vwmxgBzntg7UuG_ct_1hfhShVnFH5u0gGrdA8WfA,699
|
|
43
43
|
cognite/neat/_graph/loaders/_base.py,sha256=Fp6uUkNfAM-SVgsLz7tyNJxJ1eeEw3h2d4Q0YyppR-Y,3991
|
|
44
|
-
cognite/neat/_graph/loaders/_rdf2dms.py,sha256=
|
|
44
|
+
cognite/neat/_graph/loaders/_rdf2dms.py,sha256=WGC4qBDgZ_gVreO-20XluEtF0klqZC0gdx-jjXY3qxg,29904
|
|
45
45
|
cognite/neat/_graph/queries/__init__.py,sha256=BgDd-037kvtWwAoGAy8eORVNMiZ5-E9sIV0txIpeaN4,50
|
|
46
|
-
cognite/neat/_graph/queries/_base.py,sha256=
|
|
47
|
-
cognite/neat/_graph/queries/_construct.py,sha256=
|
|
46
|
+
cognite/neat/_graph/queries/_base.py,sha256=av-v7WmrlingHVofNXaYek9taquIukF5VjAiUHhTlSs,17142
|
|
47
|
+
cognite/neat/_graph/queries/_construct.py,sha256=OVoCLq6Xeow2eGsdZVG4Cca7s1NtgbPdebxDf2RbFvw,7214
|
|
48
48
|
cognite/neat/_graph/queries/_shared.py,sha256=uhw-nY4jJvivgtj1msdCRrfTWgauU7ybSHUqqUaFOUU,5390
|
|
49
|
-
cognite/neat/_graph/transformers/__init__.py,sha256=
|
|
49
|
+
cognite/neat/_graph/transformers/__init__.py,sha256=QOtRkU9COU6Ufx3qHLSOKJbgSYc-wFocOZP3lBEOsUo,1862
|
|
50
50
|
cognite/neat/_graph/transformers/_base.py,sha256=GWiq2rlhLHkdrMvOrOcesn9asWDu4Kt-xYSXQNSnAvY,4565
|
|
51
51
|
cognite/neat/_graph/transformers/_classic_cdf.py,sha256=IulhmojGdJwocMXBaLZyCLRcXrEeTns0JdgXJ716AzA,26334
|
|
52
52
|
cognite/neat/_graph/transformers/_iodd.py,sha256=KNz1fPdKK40UaHgPMECzNZgSeU5PdPRyLdaRYdq1iug,866
|
|
53
53
|
cognite/neat/_graph/transformers/_prune_graph.py,sha256=LFiAMYFteND5LGEv9KqYJr5C9-n7S5fR6IrEdtJyRnk,12447
|
|
54
54
|
cognite/neat/_graph/transformers/_rdfpath.py,sha256=jWroxG2j_Mt4COqCo8lY2L9_5DFyLlBnZ0ahyM2f9m8,5023
|
|
55
|
-
cognite/neat/_graph/transformers/_value_type.py,sha256=
|
|
55
|
+
cognite/neat/_graph/transformers/_value_type.py,sha256=_zceru6wOw043EzfwTcBrNDiuCh5lYOAb2VaIIFSVPw,15487
|
|
56
56
|
cognite/neat/_issues/__init__.py,sha256=OVgWivp_Br31p8zPeHjOEXs-Wj7lJU1pU1L3pfhfuqE,518
|
|
57
57
|
cognite/neat/_issues/_base.py,sha256=vV0E8cfXKlOnRXFIDZKg5QPMruELEbCaUfQ01l5dR9A,20073
|
|
58
58
|
cognite/neat/_issues/errors/__init__.py,sha256=cAmB92WnUDicT8adowED0-UbMTuJxdde2TS5G65IW50,2216
|
|
59
59
|
cognite/neat/_issues/errors/_external.py,sha256=2RUOH4zRLYZQGLNwoTospi8xTW-P7CUZ_hURjRPcSbE,1764
|
|
60
60
|
cognite/neat/_issues/errors/_general.py,sha256=zwEoaygHA2Nt9vCwiveDuzJsqZYIaX0BoUYkwJkQ4jU,844
|
|
61
61
|
cognite/neat/_issues/errors/_properties.py,sha256=T_nquQeEQS3DQY--DQ13acxhGX_-gpUMjWGTBKCh6r8,2536
|
|
62
|
-
cognite/neat/_issues/errors/_resources.py,sha256=
|
|
62
|
+
cognite/neat/_issues/errors/_resources.py,sha256=qndhGGPdulWpU7G4PkFHsF4Bjflf3lehGV4A0l-BeNI,3966
|
|
63
63
|
cognite/neat/_issues/errors/_workflow.py,sha256=m_Hlsvl5A1Oy7P3IROnz-4_do8_orZ1Pr1IHqsMyEys,971
|
|
64
64
|
cognite/neat/_issues/formatters.py,sha256=ziNWT_YXwovTfU8Av5iYuSLgszzJYKTawM_z67VBdlU,3331
|
|
65
|
-
cognite/neat/_issues/warnings/__init__.py,sha256=
|
|
65
|
+
cognite/neat/_issues/warnings/__init__.py,sha256=1iYRzwaMftwcueiA8KMA_bGdxdWxmSfMRqUPeTmHV_w,2909
|
|
66
66
|
cognite/neat/_issues/warnings/_external.py,sha256=O5GSRmIsAC6HyToQ7itpFFNILWCAg0OehPTVUy8pTuc,1319
|
|
67
67
|
cognite/neat/_issues/warnings/_general.py,sha256=idZZZDbeSrDJJ1PomdmIO40QsZQNn_lWztWvMA-9q50,782
|
|
68
|
-
cognite/neat/_issues/warnings/_models.py,sha256=
|
|
69
|
-
cognite/neat/_issues/warnings/_properties.py,sha256=
|
|
68
|
+
cognite/neat/_issues/warnings/_models.py,sha256=cowgEjD7OMgTY7OpJT5WGxMFrCjdM3YUWYsw7lzroeI,4373
|
|
69
|
+
cognite/neat/_issues/warnings/_properties.py,sha256=793TAs0KUIFKx92AWEFNTfJ4rZBA9q7J08DKsEZJGwM,2915
|
|
70
70
|
cognite/neat/_issues/warnings/_resources.py,sha256=jRhV7ROxuqcwah4rB3vTjBf_cZufRgnkDKZAflhlV3c,3556
|
|
71
71
|
cognite/neat/_issues/warnings/user_modeling.py,sha256=_cN1wbaQUStZ13aG0VbN5UwKM9YdtyPfuSNJ1AAS6o8,3668
|
|
72
72
|
cognite/neat/_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -77,43 +77,43 @@ cognite/neat/_rules/analysis/_base.py,sha256=7pgCl3Zsg4uxzvzPRbByTs6wBGuVUeYf2ec
|
|
|
77
77
|
cognite/neat/_rules/analysis/_dms.py,sha256=k9OrN6kRCcdPr8GCJDRXyF0nNXmBYJQDtoGqw7R87po,2204
|
|
78
78
|
cognite/neat/_rules/analysis/_information.py,sha256=F3fAsQS8gLTfyy4z4t4cNaoMqU9TyDRzEOMzid6FJDc,10727
|
|
79
79
|
cognite/neat/_rules/catalog/__init__.py,sha256=dwDB8b-5GKZuwVyPuiwsH0EaK2FY9-wJrkTjKoL8KE4,250
|
|
80
|
-
cognite/neat/_rules/catalog/classic_model.xlsx,sha256=
|
|
80
|
+
cognite/neat/_rules/catalog/classic_model.xlsx,sha256=YkocpkKypizjsWYwOdn5yzIz_BSl8T8SQLxgm4GIjLQ,15014
|
|
81
81
|
cognite/neat/_rules/catalog/hello_world_pump.xlsx,sha256=4Fv9qyv7ARHBXSIh-PiOUHcYrtgznKyR2PZCdEBlA0o,17071
|
|
82
82
|
cognite/neat/_rules/catalog/info-rules-imf.xlsx,sha256=hj3ej7F1RYYyhGjX0rjVSOe_ZYD8m3AOA87-YtRqM84,56342
|
|
83
83
|
cognite/neat/_rules/exporters/__init__.py,sha256=IYBa0DIYlx8cFItgYRw9W4FY_LmVEjuaqMz3JORZZX0,1204
|
|
84
84
|
cognite/neat/_rules/exporters/_base.py,sha256=VkNMy8wsH-x4tAjS44cXgzzNH0CM2k_4RhkMwK50J7g,2284
|
|
85
85
|
cognite/neat/_rules/exporters/_rules2dms.py,sha256=7I3a8ZPwkIBQAClQbMjJ2D2aIITY-OBVUD-8hirCmzM,19183
|
|
86
86
|
cognite/neat/_rules/exporters/_rules2excel.py,sha256=Y7QXtRoZNXuxM0gZIvy4u5_-V3r0qZ1ZfmMr-aMgH8A,12513
|
|
87
|
-
cognite/neat/_rules/exporters/_rules2instance_template.py,sha256=
|
|
87
|
+
cognite/neat/_rules/exporters/_rules2instance_template.py,sha256=xICzDU8Ij3Q7FhYDbEjttLc8vwqbMajfN88lrTDpn9U,5944
|
|
88
88
|
cognite/neat/_rules/exporters/_rules2ontology.py,sha256=l0QJKh0qJ5CDtReWDeQ2jt7wa__v0FEgVMX9jCKHT2U,22120
|
|
89
89
|
cognite/neat/_rules/exporters/_rules2yaml.py,sha256=-TtE7-SvfJr0-ndNy26nrHXtxAq6hNyZQbh5jwGao4o,3149
|
|
90
90
|
cognite/neat/_rules/exporters/_validation.py,sha256=DVJGdNNU2WtAFgUg0h4SWVhveRErEPOcYdT65y5toV0,682
|
|
91
|
-
cognite/neat/_rules/importers/__init__.py,sha256=
|
|
91
|
+
cognite/neat/_rules/importers/__init__.py,sha256=KiTNglSK6OVCdvPiGmO2dTKEGQJWT5Yxa6XWqm7YClQ,1408
|
|
92
92
|
cognite/neat/_rules/importers/_base.py,sha256=HOmfESfF9KLGWGa5AmhPGc-AimwKHgoShbxPz90h2JE,3589
|
|
93
93
|
cognite/neat/_rules/importers/_dms2rules.py,sha256=gpfckYFV1SH_kmUiwK4wtvBLL8zHABsX4ccbBpa9UHw,22902
|
|
94
94
|
cognite/neat/_rules/importers/_dtdl2rules/__init__.py,sha256=CNR-sUihs2mnR1bPMKs3j3L4ds3vFTsrl6YycExZTfU,68
|
|
95
95
|
cognite/neat/_rules/importers/_dtdl2rules/_unit_lookup.py,sha256=wW4saKva61Q_i17guY0dc4OseJDQfqHy_QZBtm0OD6g,12134
|
|
96
96
|
cognite/neat/_rules/importers/_dtdl2rules/dtdl_converter.py,sha256=j38U0um1ZWI-yRvEUR3z33vOvMCYXJxSO9L_B7m9xDE,11707
|
|
97
97
|
cognite/neat/_rules/importers/_dtdl2rules/dtdl_importer.py,sha256=amK-Q1n4Zl_LdZko23ZW6cJD7G6U3vm8EIDr3qiRo64,6097
|
|
98
|
-
cognite/neat/_rules/importers/_dtdl2rules/spec.py,sha256=
|
|
99
|
-
cognite/neat/_rules/importers/_rdf/__init__.py,sha256=
|
|
100
|
-
cognite/neat/_rules/importers/_rdf/_base.py,sha256=
|
|
98
|
+
cognite/neat/_rules/importers/_dtdl2rules/spec.py,sha256=SjvgEoxrUgWOAx1-2gru8UvW0HuFgUA9LRcrRu31TaU,12155
|
|
99
|
+
cognite/neat/_rules/importers/_rdf/__init__.py,sha256=2alnwoYVj1-F_M0R2NFFp7A9pZUbViJngygOydlC45Y,239
|
|
100
|
+
cognite/neat/_rules/importers/_rdf/_base.py,sha256=c8BvHdNRdirLJ7KcGH71osbn2dF8xoVkrCpVYbac4b0,5686
|
|
101
101
|
cognite/neat/_rules/importers/_rdf/_imf2rules.py,sha256=M5hfWZUhoCgXFlr8QNfogNCI2pxzqqAvTJII4yA8xJw,3723
|
|
102
|
-
cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=
|
|
102
|
+
cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=q735JA9FXihMPjOgoi7lik4O9Q9SpfCbZ6WZFA3j1i8,23476
|
|
103
103
|
cognite/neat/_rules/importers/_rdf/_owl2rules.py,sha256=gTMe94DC9xe8NR9KNVHTMTshg_NzVuN1v8Lz95BUshI,3392
|
|
104
104
|
cognite/neat/_rules/importers/_rdf/_shared.py,sha256=mxBoqFQfvHeLa4kbDYAd7FEcHe1fv97tcqHd9gmFeKk,5867
|
|
105
105
|
cognite/neat/_rules/importers/_spreadsheet2rules.py,sha256=2KhOSzNPmQgBb64L3aIARwmqY944LNP_9QciMnn7ecY,10911
|
|
106
106
|
cognite/neat/_rules/importers/_yaml2rules.py,sha256=k2oDgz--mxFVeyqQG3uvyYcb0BkFHwKHdBYHVaxtAEc,3721
|
|
107
107
|
cognite/neat/_rules/models/__init__.py,sha256=tf6tyWiYO0eC2PHCcpy208dwOHjEi9hg0sEaQLcB3uA,1024
|
|
108
108
|
cognite/neat/_rules/models/_base_input.py,sha256=kAVI6QYAzsgQ79eLPc_hANJjl-o1e9IKeD7lF61ru9Y,6656
|
|
109
|
-
cognite/neat/_rules/models/_base_rules.py,sha256=
|
|
109
|
+
cognite/neat/_rules/models/_base_rules.py,sha256=vNFHCahM9G91X1GBLkrQEE018pQF7MyT4cBzxrvhCxA,15032
|
|
110
110
|
cognite/neat/_rules/models/_rdfpath.py,sha256=hqUMZCMeI8ESdJltu7FifuUhna5JNN_Heup2aYkV56Y,11882
|
|
111
111
|
cognite/neat/_rules/models/_types.py,sha256=gGRS8qK3Z-2buBmYtaVj8762qPNz_ToYAChZYCm8eyE,5381
|
|
112
112
|
cognite/neat/_rules/models/data_types.py,sha256=LJuWUbStlZM4hUJGExOJIJXmAA4uiA0tvO9zKqLUrQg,9805
|
|
113
113
|
cognite/neat/_rules/models/dms/__init__.py,sha256=fRaUH0IwG0YwWd_DNKM6j-jHHFyiIVz4_8DPiS1KR0Y,695
|
|
114
114
|
cognite/neat/_rules/models/dms/_exporter.py,sha256=eB5uDX06XYkQkON96eykSk7ZCegb9a5dCxTmTIr252c,28020
|
|
115
|
-
cognite/neat/_rules/models/dms/_rules.py,sha256=
|
|
116
|
-
cognite/neat/_rules/models/dms/_rules_input.py,sha256=
|
|
115
|
+
cognite/neat/_rules/models/dms/_rules.py,sha256=GhmVmm9vV-CR3uEPzdA_vJbM_EjWVPN_eQmpwVZ4J6Y,22001
|
|
116
|
+
cognite/neat/_rules/models/dms/_rules_input.py,sha256=noSpYjHKW_GMaeuADOG-Z21ClxiD_tIGxl-dxOKxk-g,13390
|
|
117
117
|
cognite/neat/_rules/models/dms/_validation.py,sha256=PNFHsDNHJZfbHY1qt6D4t3eFOGjqe6Koa702Gzcz0I8,27734
|
|
118
118
|
cognite/neat/_rules/models/entities/__init__.py,sha256=Hlucp3LyV6ncLl79aqRTbSy2qgiGzoyN8x54D_zaJCY,1469
|
|
119
119
|
cognite/neat/_rules/models/entities/_constants.py,sha256=ToiLaaF-hGLPfn3AsKIIrfB4ZdTk4cY1RjM9gA1Qjkg,288
|
|
@@ -124,42 +124,42 @@ cognite/neat/_rules/models/entities/_types.py,sha256=df9rnXJJKciv2Bp-Ve2q4xdEJt6
|
|
|
124
124
|
cognite/neat/_rules/models/entities/_wrapped.py,sha256=-LP20mEv8H2NAoZplP-IJud-kaMHNFWE8fqbeJmdpk4,7579
|
|
125
125
|
cognite/neat/_rules/models/information/__init__.py,sha256=lV7l8RTfWBvN_DFkzea8OzADjq0rZGgWe_0Fiwtfje0,556
|
|
126
126
|
cognite/neat/_rules/models/information/_rules.py,sha256=RQDcXEVZz9GG6KghpK-Vp4W_4ThoC12kfsPQdMkW75o,13766
|
|
127
|
-
cognite/neat/_rules/models/information/_rules_input.py,sha256=
|
|
127
|
+
cognite/neat/_rules/models/information/_rules_input.py,sha256=njpi37IxTBLH4k51tRJeASU6yQXt324NSuxcZ_CjyU8,5940
|
|
128
128
|
cognite/neat/_rules/models/information/_validation.py,sha256=HbaLShj6uumu-t9I3FUI_iKQfUDiwEkuFENHgWIPfrk,10202
|
|
129
129
|
cognite/neat/_rules/models/mapping/__init__.py,sha256=T68Hf7rhiXa7b03h4RMwarAmkGnB-Bbhc1H07b2PyC4,100
|
|
130
130
|
cognite/neat/_rules/models/mapping/_classic2core.py,sha256=AhLWoXk4PlBVA6SgBtY9dcLcpqEMaYcsiEatI19miPk,1211
|
|
131
131
|
cognite/neat/_rules/models/mapping/_classic2core.yaml,sha256=jodkmcTborWJmG3At16OChtnol696X6D4lgAa7aaQ78,20491
|
|
132
|
-
cognite/neat/_rules/transformers/__init__.py,sha256
|
|
132
|
+
cognite/neat/_rules/transformers/__init__.py,sha256=AX1L8wIx8ql88IMQh5kShYz_-ljNkyqBs7zoXisUCKw,1241
|
|
133
133
|
cognite/neat/_rules/transformers/_base.py,sha256=sflEUKfNgCE3NNErzBMJ88VJEYB12pU1H3da40B52Yg,2556
|
|
134
|
-
cognite/neat/_rules/transformers/_converters.py,sha256=
|
|
134
|
+
cognite/neat/_rules/transformers/_converters.py,sha256=oe8g_me3Os03FC2rEoQiGHbl8SfpSZUvDySFWY5CSbM,63564
|
|
135
135
|
cognite/neat/_rules/transformers/_mapping.py,sha256=2aNJ5hcJ2hRtQAacOEC6uOTM7SdglduimepmIhRUikg,18157
|
|
136
136
|
cognite/neat/_rules/transformers/_verification.py,sha256=jKTppklUCVwVlRfYyMfnUtV8r2ACTY-AtsoMF6L-KXo,4593
|
|
137
137
|
cognite/neat/_session/__init__.py,sha256=fxQ5URVlUnmEGYyB8Baw7IDq-uYacqkigbc4b-Pr9Fw,58
|
|
138
|
-
cognite/neat/_session/_base.py,sha256=
|
|
138
|
+
cognite/neat/_session/_base.py,sha256=gY_n6NEjgbrb8qoXw62CBYgPhCSKvZ0ldLyYso1g5vQ,11882
|
|
139
139
|
cognite/neat/_session/_collector.py,sha256=SPCb1fEuOVIMHMQsVUNS7nkUUPhtUuNatnWPAIfQMcE,4093
|
|
140
|
-
cognite/neat/_session/_drop.py,sha256=
|
|
141
|
-
cognite/neat/_session/_inspect.py,sha256=
|
|
140
|
+
cognite/neat/_session/_drop.py,sha256=zJCser67ttsDOkyG6yfC0Ijc4t65s2JCQCUDI8Q7REQ,1612
|
|
141
|
+
cognite/neat/_session/_inspect.py,sha256=i0RgKSp9nRalCaY1uJi5JfPMkaL-thUVxyegc2QQ4cQ,8450
|
|
142
142
|
cognite/neat/_session/_mapping.py,sha256=J0nUTKfWv7EYGSxCRo_eaZFs3SjPVVgGQQaxH-x2Q0Y,2588
|
|
143
143
|
cognite/neat/_session/_prepare.py,sha256=KuGPt9OYssNDyRPAzci5i32xOjPtA-TeZrccDcQyga4,21703
|
|
144
|
-
cognite/neat/_session/_read.py,sha256=
|
|
145
|
-
cognite/neat/_session/_set.py,sha256=
|
|
146
|
-
cognite/neat/_session/_show.py,sha256=
|
|
147
|
-
cognite/neat/_session/_state.py,sha256=
|
|
148
|
-
cognite/neat/_session/_to.py,sha256=
|
|
149
|
-
cognite/neat/_session/_wizard.py,sha256=
|
|
144
|
+
cognite/neat/_session/_read.py,sha256=je0bkVqQGqRV6LQ6yYInA7MTPOxRcw1iL2ltxmaf8Js,18947
|
|
145
|
+
cognite/neat/_session/_set.py,sha256=pFRSqsNRl0BC8Y9ZQN1I5Jg0V3LQQaM5Nvayje9Uh8M,3353
|
|
146
|
+
cognite/neat/_session/_show.py,sha256=pC8DsMXIvO9EVHB6fjo085jhZ048qZmJIPPil4ZAJpI,16307
|
|
147
|
+
cognite/neat/_session/_state.py,sha256=yvzbNxPXk2h3NS5ttC_iEWIcYWfhjW9fnzxqw3ow7vo,4676
|
|
148
|
+
cognite/neat/_session/_to.py,sha256=HY6d1Oe4k5EEFelWG7czcfzKpmJArvG_zx7v72BH--Q,10888
|
|
149
|
+
cognite/neat/_session/_wizard.py,sha256=9idlzhZy54h2Iwupe9iXKX3RDb5jJQuBZFEouni50L0,1476
|
|
150
150
|
cognite/neat/_session/engine/__init__.py,sha256=D3MxUorEs6-NtgoICqtZ8PISQrjrr4dvca6n48bu_bI,120
|
|
151
151
|
cognite/neat/_session/engine/_import.py,sha256=1QxA2_EK613lXYAHKQbZyw2yjo5P9XuiX4Z6_6-WMNQ,169
|
|
152
152
|
cognite/neat/_session/engine/_interface.py,sha256=ItJ1VMrPt-pKKvpSpglD9n9yFC6ehF9xV2DUVCyfQB0,533
|
|
153
153
|
cognite/neat/_session/engine/_load.py,sha256=LcoYVthQyCzLWKzRE_75_nElS-n_eMWSPAgNJBnh5dA,5193
|
|
154
|
-
cognite/neat/_session/exceptions.py,sha256=
|
|
154
|
+
cognite/neat/_session/exceptions.py,sha256=THLZRWs-CU-vST_UMg0kG982D5EYmh6SNgxBKN15A6I,2553
|
|
155
155
|
cognite/neat/_shared.py,sha256=Ov59SWYboRRsncB_5V1ZC_BAoACfNLjo80vqE5Ru6wo,2325
|
|
156
156
|
cognite/neat/_store/__init__.py,sha256=RrvuZrMdezqun5dOrwHWSk26kampZcvqiHBqSFumkEE,130
|
|
157
|
-
cognite/neat/_store/_graph_store.py,sha256=
|
|
157
|
+
cognite/neat/_store/_graph_store.py,sha256=hofChjCE1EZWxBfMpUyWP8dmU9SXIN1ZPDWuemM8LM4,26823
|
|
158
158
|
cognite/neat/_store/_provenance.py,sha256=g_u6O7jo3ZekQVtc-FfJR1fTGqD9L3ipwfSEjdHB1xM,6610
|
|
159
|
-
cognite/neat/_store/_rules_store.py,sha256=
|
|
159
|
+
cognite/neat/_store/_rules_store.py,sha256=DIfqCiIsecIx8LKj1TZ0qq5pW0p2bFv6pLgj2Rt6aCA,21413
|
|
160
160
|
cognite/neat/_store/exceptions.py,sha256=1xLtWqX-TiGcXdgayBgeNx1cipoXkye7LmTMFdpMg1s,506
|
|
161
161
|
cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
|
-
cognite/neat/_utils/auth.py,sha256=
|
|
162
|
+
cognite/neat/_utils/auth.py,sha256=0r7esRYkCp4fE42qYwsidnWP0QttJR8JhEZAj9meygc,14509
|
|
163
163
|
cognite/neat/_utils/auxiliary.py,sha256=WFOycFgoYipvDmtGvn6ZNH3H8iNZmHamrfe2kXRb8lM,6667
|
|
164
164
|
cognite/neat/_utils/collection_.py,sha256=JvYLSR6Cf8PIKGhr8HKRvep0U-z0980jbnIM_g-5I5I,2366
|
|
165
165
|
cognite/neat/_utils/graph_transformations_report.py,sha256=rjEy4XMvOygFL4UgnYOmFW6AHxaU9IXep-dmYc5654c,1230
|
|
@@ -172,10 +172,10 @@ cognite/neat/_utils/text.py,sha256=0IffvBIAmeGh92F4T6xiEdd-vv3B7FOGEMbfuTktO5Y,4
|
|
|
172
172
|
cognite/neat/_utils/time_.py,sha256=O30LUiDH9TdOYz8_a9pFqTtJdg8vEjC3qHCk8xZblG8,345
|
|
173
173
|
cognite/neat/_utils/upload.py,sha256=iWKmsQgw4EHLv-11NjYu7zAj5LtqTAfNa87a1kWeuaU,5727
|
|
174
174
|
cognite/neat/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
|
|
175
|
-
cognite/neat/_version.py,sha256=
|
|
175
|
+
cognite/neat/_version.py,sha256=spYyjCBzoNU6USA-VV_IW_pexlBvTqvkUnbgHAvjvmQ,46
|
|
176
176
|
cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
|
-
cognite_neat-0.
|
|
178
|
-
cognite_neat-0.
|
|
179
|
-
cognite_neat-0.
|
|
180
|
-
cognite_neat-0.
|
|
181
|
-
cognite_neat-0.
|
|
177
|
+
cognite_neat-0.108.0.dist-info/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
|
|
178
|
+
cognite_neat-0.108.0.dist-info/METADATA,sha256=Dhtxkhy-OCyTVJxDewdVRTWg8CcOTEWsnRGGIcmJcGY,5361
|
|
179
|
+
cognite_neat-0.108.0.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
180
|
+
cognite_neat-0.108.0.dist-info/entry_points.txt,sha256=SsQlnl8SNMSSjE3acBI835JYFtsIinLSbVmHmMEXv6E,51
|
|
181
|
+
cognite_neat-0.108.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|