cognite-neat 0.106.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/__init__.py +5 -1
- cognite/neat/_graph/extractors/_base.py +32 -0
- cognite/neat/_graph/extractors/_classic_cdf/_base.py +128 -14
- cognite/neat/_graph/extractors/_classic_cdf/_classic.py +156 -12
- cognite/neat/_graph/extractors/_classic_cdf/_relationships.py +50 -12
- cognite/neat/_graph/extractors/_classic_cdf/_sequences.py +26 -1
- cognite/neat/_graph/extractors/_dms.py +196 -47
- cognite/neat/_graph/extractors/_dms_graph.py +199 -0
- cognite/neat/_graph/extractors/_mock_graph_generator.py +1 -1
- cognite/neat/_graph/extractors/_rdf_file.py +33 -5
- cognite/neat/_graph/loaders/__init__.py +1 -3
- cognite/neat/_graph/loaders/_rdf2dms.py +123 -19
- cognite/neat/_graph/queries/_base.py +140 -84
- cognite/neat/_graph/queries/_construct.py +2 -2
- cognite/neat/_graph/transformers/__init__.py +8 -1
- cognite/neat/_graph/transformers/_base.py +9 -1
- cognite/neat/_graph/transformers/_classic_cdf.py +90 -3
- cognite/neat/_graph/transformers/_rdfpath.py +3 -3
- cognite/neat/_graph/transformers/_value_type.py +106 -45
- 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/analysis/_base.py +1 -1
- cognite/neat/_rules/analysis/_information.py +14 -13
- cognite/neat/_rules/catalog/__init__.py +1 -0
- cognite/neat/_rules/catalog/classic_model.xlsx +0 -0
- cognite/neat/_rules/catalog/info-rules-imf.xlsx +0 -0
- cognite/neat/_rules/exporters/_rules2instance_template.py +3 -3
- cognite/neat/_rules/importers/__init__.py +3 -1
- cognite/neat/_rules/importers/_dms2rules.py +7 -5
- 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 +242 -19
- cognite/neat/_rules/models/_base_rules.py +13 -15
- cognite/neat/_rules/models/_types.py +5 -0
- cognite/neat/_rules/models/dms/_rules.py +51 -10
- cognite/neat/_rules/models/dms/_rules_input.py +4 -0
- cognite/neat/_rules/models/information/_rules.py +48 -5
- cognite/neat/_rules/models/information/_rules_input.py +6 -1
- cognite/neat/_rules/models/mapping/_classic2core.py +4 -5
- cognite/neat/_rules/transformers/__init__.py +10 -0
- cognite/neat/_rules/transformers/_converters.py +300 -62
- cognite/neat/_session/_base.py +57 -10
- cognite/neat/_session/_drop.py +5 -1
- cognite/neat/_session/_inspect.py +3 -2
- cognite/neat/_session/_mapping.py +17 -6
- cognite/neat/_session/_prepare.py +0 -47
- cognite/neat/_session/_read.py +115 -10
- cognite/neat/_session/_set.py +27 -0
- cognite/neat/_session/_show.py +4 -4
- cognite/neat/_session/_state.py +12 -1
- cognite/neat/_session/_to.py +43 -2
- cognite/neat/_session/_wizard.py +1 -1
- cognite/neat/_session/exceptions.py +8 -3
- cognite/neat/_store/_graph_store.py +331 -136
- cognite/neat/_store/_rules_store.py +130 -1
- cognite/neat/_utils/auth.py +3 -1
- cognite/neat/_version.py +1 -1
- {cognite_neat-0.106.0.dist-info → cognite_neat-0.108.0.dist-info}/METADATA +2 -2
- {cognite_neat-0.106.0.dist-info → cognite_neat-0.108.0.dist-info}/RECORD +67 -65
- {cognite_neat-0.106.0.dist-info → cognite_neat-0.108.0.dist-info}/WHEEL +1 -1
- {cognite_neat-0.106.0.dist-info → cognite_neat-0.108.0.dist-info}/LICENSE +0 -0
- {cognite_neat-0.106.0.dist-info → cognite_neat-0.108.0.dist-info}/entry_points.txt +0 -0
|
@@ -8,9 +8,11 @@ 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
|
|
15
|
+
from cognite.neat._graph.extractors import DMSGraphExtractor, KnowledgeGraphExtractor
|
|
14
16
|
from cognite.neat._issues import IssueList, catch_issues
|
|
15
17
|
from cognite.neat._issues.errors import NeatValueError
|
|
16
18
|
from cognite.neat._rules._shared import ReadRules, Rules, T_VerifiedRules, VerifiedRules
|
|
@@ -67,12 +69,26 @@ class NeatRulesStore:
|
|
|
67
69
|
|
|
68
70
|
def import_(self, importer: BaseImporter) -> IssueList:
|
|
69
71
|
agent = importer.agent
|
|
72
|
+
|
|
70
73
|
source_entity = Entity(
|
|
71
74
|
was_attributed_to=UNKNOWN_AGENT,
|
|
72
75
|
id_=importer.source_uri,
|
|
73
76
|
)
|
|
77
|
+
|
|
74
78
|
return self._do_activity(importer.to_rules, agent, source_entity, importer.description)[1]
|
|
75
79
|
|
|
80
|
+
def import_graph(self, extractor: KnowledgeGraphExtractor) -> IssueList:
|
|
81
|
+
agent = extractor.agent
|
|
82
|
+
source_entity = Entity(
|
|
83
|
+
was_attributed_to=UNKNOWN_AGENT,
|
|
84
|
+
id_=extractor.source_uri,
|
|
85
|
+
)
|
|
86
|
+
_, issues = self._do_activity(extractor.get_information_rules, agent, source_entity, extractor.description)
|
|
87
|
+
if isinstance(extractor, DMSGraphExtractor):
|
|
88
|
+
_, dms_issues = self._do_activity(extractor.get_dms_rules, agent, source_entity, extractor.description)
|
|
89
|
+
issues.extend(dms_issues)
|
|
90
|
+
return issues
|
|
91
|
+
|
|
76
92
|
def transform(self, *transformer: RulesTransformer) -> IssueList:
|
|
77
93
|
if not self.provenance:
|
|
78
94
|
raise EmptyStore()
|
|
@@ -256,6 +272,55 @@ class NeatRulesStore:
|
|
|
256
272
|
result, _ = self._do_activity(lambda: action(rules), agent, last_entity, description)
|
|
257
273
|
return result
|
|
258
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
|
+
|
|
259
324
|
def _do_activity(
|
|
260
325
|
self, action: Callable[[], Rules | None], agent: Agent, source_entity: Entity, description: str
|
|
261
326
|
) -> tuple[Any, IssueList]:
|
|
@@ -265,6 +330,18 @@ class NeatRulesStore:
|
|
|
265
330
|
result = action()
|
|
266
331
|
end = datetime.now(timezone.utc)
|
|
267
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
|
+
|
|
268
345
|
activity = Activity(
|
|
269
346
|
was_associated_with=agent,
|
|
270
347
|
ended_at_time=end,
|
|
@@ -276,6 +353,7 @@ class NeatRulesStore:
|
|
|
276
353
|
was_generated_by=activity,
|
|
277
354
|
result=result,
|
|
278
355
|
issues=issue_list,
|
|
356
|
+
# here id can be bumped in case id already exists
|
|
279
357
|
id_=self._create_id(result),
|
|
280
358
|
)
|
|
281
359
|
change = Change(
|
|
@@ -289,23 +367,57 @@ class NeatRulesStore:
|
|
|
289
367
|
self.provenance.append(change)
|
|
290
368
|
return result, issue_list
|
|
291
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
|
+
|
|
292
388
|
def _create_id(self, result: Any) -> rdflib.URIRef:
|
|
293
389
|
identifier: rdflib.URIRef
|
|
390
|
+
|
|
391
|
+
# Case 1: Unsuccessful activity -> target entity will be EMPTY_ENTITY
|
|
294
392
|
if result is None:
|
|
295
393
|
identifier = EMPTY_ENTITY.id_
|
|
394
|
+
|
|
395
|
+
# Case 2: Result ReadRules
|
|
296
396
|
elif isinstance(result, ReadRules):
|
|
397
|
+
# Case 2.1: ReadRules with no rules -> target entity will be EMPTY_ENTITY
|
|
297
398
|
if result.rules is None:
|
|
298
399
|
identifier = EMPTY_ENTITY.id_
|
|
400
|
+
|
|
401
|
+
# Case 2.2: ReadRules with rules identified by metadata.identifier
|
|
299
402
|
else:
|
|
300
403
|
identifier = result.rules.metadata.identifier
|
|
404
|
+
|
|
405
|
+
# Case 3: Result VerifiedRules, identifier will be metadata.identifier
|
|
301
406
|
elif isinstance(result, VerifiedRules):
|
|
302
407
|
identifier = result.metadata.identifier
|
|
408
|
+
|
|
409
|
+
# Case 4: Defaults to unknown entity
|
|
303
410
|
else:
|
|
304
411
|
identifier = DEFAULT_NAMESPACE["unknown-entity"]
|
|
305
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
|
|
306
415
|
if identifier not in self._iteration_by_id:
|
|
307
416
|
self._iteration_by_id[identifier] = 1
|
|
308
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
|
|
309
421
|
self._iteration_by_id[identifier] += 1
|
|
310
422
|
return identifier + f"/Iteration_{self._iteration_by_id[identifier]}"
|
|
311
423
|
|
|
@@ -365,14 +477,31 @@ class NeatRulesStore:
|
|
|
365
477
|
return change.target_entity.result
|
|
366
478
|
raise NeatValueError("No verified DMS rules found in the provenance.")
|
|
367
479
|
|
|
480
|
+
@property
|
|
481
|
+
def last_verified_information_rules(self) -> InformationRules:
|
|
482
|
+
for change in reversed(self.provenance):
|
|
483
|
+
if isinstance(change.target_entity, ModelEntity) and isinstance(
|
|
484
|
+
change.target_entity.result, InformationRules
|
|
485
|
+
):
|
|
486
|
+
return change.target_entity.result
|
|
487
|
+
raise NeatValueError("No verified information rules found in the provenance.")
|
|
488
|
+
|
|
368
489
|
@property
|
|
369
490
|
def last_issues(self) -> IssueList:
|
|
370
491
|
if not self.provenance:
|
|
371
492
|
raise NeatValueError("No issues found in the provenance.")
|
|
372
|
-
|
|
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
|
|
373
497
|
|
|
374
498
|
@property
|
|
375
499
|
def last_outcome(self) -> UploadResultList:
|
|
376
500
|
if self._last_outcome is not None:
|
|
377
501
|
return self._last_outcome
|
|
378
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
|
@@ -6,6 +6,7 @@ from pathlib import Path
|
|
|
6
6
|
from typing import Literal, TypeAlias, get_args
|
|
7
7
|
|
|
8
8
|
from cognite.client import ClientConfig, CogniteClient
|
|
9
|
+
from cognite.client.config import global_config
|
|
9
10
|
from cognite.client.credentials import CredentialProvider, OAuthClientCredentials, OAuthInteractive, Token
|
|
10
11
|
|
|
11
12
|
from cognite.neat import _version
|
|
@@ -33,6 +34,7 @@ def get_cognite_client(env_file_name: str) -> CogniteClient:
|
|
|
33
34
|
"""
|
|
34
35
|
if not env_file_name.endswith(".env"):
|
|
35
36
|
raise ValueError("env_file_name must end with '.env'")
|
|
37
|
+
global_config.disable_pypi_version_check = True
|
|
36
38
|
# First try to load from .env file in repository root
|
|
37
39
|
repo_root = _repo_root()
|
|
38
40
|
if repo_root:
|
|
@@ -247,7 +249,7 @@ class EnvironmentVariables:
|
|
|
247
249
|
is_optional = hasattr(self, field.name.lower())
|
|
248
250
|
if is_optional and first_optional:
|
|
249
251
|
lines.append(
|
|
250
|
-
"# The below variables are the defaults, they are automatically
|
|
252
|
+
"# The below variables are the defaults, they are automatically constructed unless they are set."
|
|
251
253
|
)
|
|
252
254
|
first_optional = False
|
|
253
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"
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cognite-neat
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.108.0
|
|
4
4
|
Summary: Knowledge graph transformation
|
|
5
|
-
Home-page: https://cognite-neat.readthedocs-hosted.com/
|
|
6
5
|
License: Apache-2.0
|
|
7
6
|
Author: Nikola Vasiljevic
|
|
8
7
|
Author-email: nikola.vasiljevic@cognite.com
|
|
@@ -54,6 +53,7 @@ Requires-Dist: tomli (>=2.0.1,<3.0.0) ; python_version < "3.11"
|
|
|
54
53
|
Requires-Dist: typing_extensions (>=4.8,<5.0) ; python_version < "3.11"
|
|
55
54
|
Requires-Dist: urllib3 (>=2,<3)
|
|
56
55
|
Project-URL: Documentation, https://cognite-neat.readthedocs-hosted.com/
|
|
56
|
+
Project-URL: Homepage, https://cognite-neat.readthedocs-hosted.com/
|
|
57
57
|
Project-URL: Repository, https://github.com/cognitedata/neat
|
|
58
58
|
Description-Content-Type: text/markdown
|
|
59
59
|
|
|
@@ -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
|
|
@@ -20,98 +20,100 @@ cognite/neat/_graph/examples/Knowledge-Graph-Nordic44-dirty.xml,sha256=ujJip6XBs
|
|
|
20
20
|
cognite/neat/_graph/examples/Knowledge-Graph-Nordic44.xml,sha256=U2Ns-M4LRjT1fBkhmRj63ur7jDzlRtHK9yOLf_npZ_g,1437996
|
|
21
21
|
cognite/neat/_graph/examples/__init__.py,sha256=yAjHVY3b5jOjmbW-iLbhvu7BG014TpGi3K4igkDqW5I,368
|
|
22
22
|
cognite/neat/_graph/examples/skos-capturing-sheet-wind-topics.xlsx,sha256=CV_yK5ZSbYS_ktfIZUPD8Sevs47zpswLXQUDFkGE4Gw,45798
|
|
23
|
-
cognite/neat/_graph/extractors/__init__.py,sha256=
|
|
24
|
-
cognite/neat/_graph/extractors/_base.py,sha256=
|
|
23
|
+
cognite/neat/_graph/extractors/__init__.py,sha256=T3G8U8ZYHSW0KA8JNArcFgY7wRk51S8T93J3YaVFeLY,2257
|
|
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=
|
|
37
|
+
cognite/neat/_graph/extractors/_dms.py,sha256=2IBQzQ-UAbdmqykPAhRJAnf5oYh0A_Ha5dLLecj8-NM,14045
|
|
38
|
+
cognite/neat/_graph/extractors/_dms_graph.py,sha256=Da34mY1gl457iIIFbCDejOXsIlwZSG3GpJt4M5dCMbw,8047
|
|
38
39
|
cognite/neat/_graph/extractors/_iodd.py,sha256=nMSLmtgvxLrQJMA5NECF1OCp4Bcv0Vq0WsNv8X9Oj1k,18458
|
|
39
|
-
cognite/neat/_graph/extractors/_mock_graph_generator.py,sha256=
|
|
40
|
-
cognite/neat/_graph/extractors/_rdf_file.py,sha256=
|
|
41
|
-
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
|
|
42
43
|
cognite/neat/_graph/loaders/_base.py,sha256=Fp6uUkNfAM-SVgsLz7tyNJxJ1eeEw3h2d4Q0YyppR-Y,3991
|
|
43
|
-
cognite/neat/_graph/loaders/_rdf2dms.py,sha256=
|
|
44
|
+
cognite/neat/_graph/loaders/_rdf2dms.py,sha256=WGC4qBDgZ_gVreO-20XluEtF0klqZC0gdx-jjXY3qxg,29904
|
|
44
45
|
cognite/neat/_graph/queries/__init__.py,sha256=BgDd-037kvtWwAoGAy8eORVNMiZ5-E9sIV0txIpeaN4,50
|
|
45
|
-
cognite/neat/_graph/queries/_base.py,sha256=
|
|
46
|
-
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
|
|
47
48
|
cognite/neat/_graph/queries/_shared.py,sha256=uhw-nY4jJvivgtj1msdCRrfTWgauU7ybSHUqqUaFOUU,5390
|
|
48
|
-
cognite/neat/_graph/transformers/__init__.py,sha256=
|
|
49
|
-
cognite/neat/_graph/transformers/_base.py,sha256=
|
|
50
|
-
cognite/neat/_graph/transformers/_classic_cdf.py,sha256=
|
|
49
|
+
cognite/neat/_graph/transformers/__init__.py,sha256=QOtRkU9COU6Ufx3qHLSOKJbgSYc-wFocOZP3lBEOsUo,1862
|
|
50
|
+
cognite/neat/_graph/transformers/_base.py,sha256=GWiq2rlhLHkdrMvOrOcesn9asWDu4Kt-xYSXQNSnAvY,4565
|
|
51
|
+
cognite/neat/_graph/transformers/_classic_cdf.py,sha256=IulhmojGdJwocMXBaLZyCLRcXrEeTns0JdgXJ716AzA,26334
|
|
51
52
|
cognite/neat/_graph/transformers/_iodd.py,sha256=KNz1fPdKK40UaHgPMECzNZgSeU5PdPRyLdaRYdq1iug,866
|
|
52
53
|
cognite/neat/_graph/transformers/_prune_graph.py,sha256=LFiAMYFteND5LGEv9KqYJr5C9-n7S5fR6IrEdtJyRnk,12447
|
|
53
|
-
cognite/neat/_graph/transformers/_rdfpath.py,sha256=
|
|
54
|
-
cognite/neat/_graph/transformers/_value_type.py,sha256=
|
|
54
|
+
cognite/neat/_graph/transformers/_rdfpath.py,sha256=jWroxG2j_Mt4COqCo8lY2L9_5DFyLlBnZ0ahyM2f9m8,5023
|
|
55
|
+
cognite/neat/_graph/transformers/_value_type.py,sha256=_zceru6wOw043EzfwTcBrNDiuCh5lYOAb2VaIIFSVPw,15487
|
|
55
56
|
cognite/neat/_issues/__init__.py,sha256=OVgWivp_Br31p8zPeHjOEXs-Wj7lJU1pU1L3pfhfuqE,518
|
|
56
57
|
cognite/neat/_issues/_base.py,sha256=vV0E8cfXKlOnRXFIDZKg5QPMruELEbCaUfQ01l5dR9A,20073
|
|
57
58
|
cognite/neat/_issues/errors/__init__.py,sha256=cAmB92WnUDicT8adowED0-UbMTuJxdde2TS5G65IW50,2216
|
|
58
59
|
cognite/neat/_issues/errors/_external.py,sha256=2RUOH4zRLYZQGLNwoTospi8xTW-P7CUZ_hURjRPcSbE,1764
|
|
59
60
|
cognite/neat/_issues/errors/_general.py,sha256=zwEoaygHA2Nt9vCwiveDuzJsqZYIaX0BoUYkwJkQ4jU,844
|
|
60
61
|
cognite/neat/_issues/errors/_properties.py,sha256=T_nquQeEQS3DQY--DQ13acxhGX_-gpUMjWGTBKCh6r8,2536
|
|
61
|
-
cognite/neat/_issues/errors/_resources.py,sha256=
|
|
62
|
+
cognite/neat/_issues/errors/_resources.py,sha256=qndhGGPdulWpU7G4PkFHsF4Bjflf3lehGV4A0l-BeNI,3966
|
|
62
63
|
cognite/neat/_issues/errors/_workflow.py,sha256=m_Hlsvl5A1Oy7P3IROnz-4_do8_orZ1Pr1IHqsMyEys,971
|
|
63
64
|
cognite/neat/_issues/formatters.py,sha256=ziNWT_YXwovTfU8Av5iYuSLgszzJYKTawM_z67VBdlU,3331
|
|
64
|
-
cognite/neat/_issues/warnings/__init__.py,sha256=
|
|
65
|
+
cognite/neat/_issues/warnings/__init__.py,sha256=1iYRzwaMftwcueiA8KMA_bGdxdWxmSfMRqUPeTmHV_w,2909
|
|
65
66
|
cognite/neat/_issues/warnings/_external.py,sha256=O5GSRmIsAC6HyToQ7itpFFNILWCAg0OehPTVUy8pTuc,1319
|
|
66
67
|
cognite/neat/_issues/warnings/_general.py,sha256=idZZZDbeSrDJJ1PomdmIO40QsZQNn_lWztWvMA-9q50,782
|
|
67
|
-
cognite/neat/_issues/warnings/_models.py,sha256=
|
|
68
|
-
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
|
|
69
70
|
cognite/neat/_issues/warnings/_resources.py,sha256=jRhV7ROxuqcwah4rB3vTjBf_cZufRgnkDKZAflhlV3c,3556
|
|
70
71
|
cognite/neat/_issues/warnings/user_modeling.py,sha256=_cN1wbaQUStZ13aG0VbN5UwKM9YdtyPfuSNJ1AAS6o8,3668
|
|
71
72
|
cognite/neat/_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
73
|
cognite/neat/_rules/_constants.py,sha256=lOyf7nybSYOuAE_wKmTMncHYz0Io0_J_YVnYBzjrvZA,5637
|
|
73
74
|
cognite/neat/_rules/_shared.py,sha256=2WrvsSKP4XQisDXUVu5z4GOfjQMIQZwed_UNfb4NCoY,1282
|
|
74
75
|
cognite/neat/_rules/analysis/__init__.py,sha256=sTW-gDkHn2VPAHnuOBYJF40Ap3AfxvhLkDGoIRKyOJE,126
|
|
75
|
-
cognite/neat/_rules/analysis/_base.py,sha256=
|
|
76
|
+
cognite/neat/_rules/analysis/_base.py,sha256=7pgCl3Zsg4uxzvzPRbByTs6wBGuVUeYf2ec-PiG7nLY,16745
|
|
76
77
|
cognite/neat/_rules/analysis/_dms.py,sha256=k9OrN6kRCcdPr8GCJDRXyF0nNXmBYJQDtoGqw7R87po,2204
|
|
77
|
-
cognite/neat/_rules/analysis/_information.py,sha256=
|
|
78
|
-
cognite/neat/_rules/catalog/__init__.py,sha256=
|
|
78
|
+
cognite/neat/_rules/analysis/_information.py,sha256=F3fAsQS8gLTfyy4z4t4cNaoMqU9TyDRzEOMzid6FJDc,10727
|
|
79
|
+
cognite/neat/_rules/catalog/__init__.py,sha256=dwDB8b-5GKZuwVyPuiwsH0EaK2FY9-wJrkTjKoL8KE4,250
|
|
80
|
+
cognite/neat/_rules/catalog/classic_model.xlsx,sha256=YkocpkKypizjsWYwOdn5yzIz_BSl8T8SQLxgm4GIjLQ,15014
|
|
79
81
|
cognite/neat/_rules/catalog/hello_world_pump.xlsx,sha256=4Fv9qyv7ARHBXSIh-PiOUHcYrtgznKyR2PZCdEBlA0o,17071
|
|
80
|
-
cognite/neat/_rules/catalog/info-rules-imf.xlsx,sha256=
|
|
82
|
+
cognite/neat/_rules/catalog/info-rules-imf.xlsx,sha256=hj3ej7F1RYYyhGjX0rjVSOe_ZYD8m3AOA87-YtRqM84,56342
|
|
81
83
|
cognite/neat/_rules/exporters/__init__.py,sha256=IYBa0DIYlx8cFItgYRw9W4FY_LmVEjuaqMz3JORZZX0,1204
|
|
82
84
|
cognite/neat/_rules/exporters/_base.py,sha256=VkNMy8wsH-x4tAjS44cXgzzNH0CM2k_4RhkMwK50J7g,2284
|
|
83
85
|
cognite/neat/_rules/exporters/_rules2dms.py,sha256=7I3a8ZPwkIBQAClQbMjJ2D2aIITY-OBVUD-8hirCmzM,19183
|
|
84
86
|
cognite/neat/_rules/exporters/_rules2excel.py,sha256=Y7QXtRoZNXuxM0gZIvy4u5_-V3r0qZ1ZfmMr-aMgH8A,12513
|
|
85
|
-
cognite/neat/_rules/exporters/_rules2instance_template.py,sha256=
|
|
87
|
+
cognite/neat/_rules/exporters/_rules2instance_template.py,sha256=xICzDU8Ij3Q7FhYDbEjttLc8vwqbMajfN88lrTDpn9U,5944
|
|
86
88
|
cognite/neat/_rules/exporters/_rules2ontology.py,sha256=l0QJKh0qJ5CDtReWDeQ2jt7wa__v0FEgVMX9jCKHT2U,22120
|
|
87
89
|
cognite/neat/_rules/exporters/_rules2yaml.py,sha256=-TtE7-SvfJr0-ndNy26nrHXtxAq6hNyZQbh5jwGao4o,3149
|
|
88
90
|
cognite/neat/_rules/exporters/_validation.py,sha256=DVJGdNNU2WtAFgUg0h4SWVhveRErEPOcYdT65y5toV0,682
|
|
89
|
-
cognite/neat/_rules/importers/__init__.py,sha256=
|
|
91
|
+
cognite/neat/_rules/importers/__init__.py,sha256=KiTNglSK6OVCdvPiGmO2dTKEGQJWT5Yxa6XWqm7YClQ,1408
|
|
90
92
|
cognite/neat/_rules/importers/_base.py,sha256=HOmfESfF9KLGWGa5AmhPGc-AimwKHgoShbxPz90h2JE,3589
|
|
91
|
-
cognite/neat/_rules/importers/_dms2rules.py,sha256=
|
|
93
|
+
cognite/neat/_rules/importers/_dms2rules.py,sha256=gpfckYFV1SH_kmUiwK4wtvBLL8zHABsX4ccbBpa9UHw,22902
|
|
92
94
|
cognite/neat/_rules/importers/_dtdl2rules/__init__.py,sha256=CNR-sUihs2mnR1bPMKs3j3L4ds3vFTsrl6YycExZTfU,68
|
|
93
95
|
cognite/neat/_rules/importers/_dtdl2rules/_unit_lookup.py,sha256=wW4saKva61Q_i17guY0dc4OseJDQfqHy_QZBtm0OD6g,12134
|
|
94
96
|
cognite/neat/_rules/importers/_dtdl2rules/dtdl_converter.py,sha256=j38U0um1ZWI-yRvEUR3z33vOvMCYXJxSO9L_B7m9xDE,11707
|
|
95
97
|
cognite/neat/_rules/importers/_dtdl2rules/dtdl_importer.py,sha256=amK-Q1n4Zl_LdZko23ZW6cJD7G6U3vm8EIDr3qiRo64,6097
|
|
96
|
-
cognite/neat/_rules/importers/_dtdl2rules/spec.py,sha256=
|
|
97
|
-
cognite/neat/_rules/importers/_rdf/__init__.py,sha256=
|
|
98
|
-
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
|
|
99
101
|
cognite/neat/_rules/importers/_rdf/_imf2rules.py,sha256=M5hfWZUhoCgXFlr8QNfogNCI2pxzqqAvTJII4yA8xJw,3723
|
|
100
|
-
cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=
|
|
102
|
+
cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=q735JA9FXihMPjOgoi7lik4O9Q9SpfCbZ6WZFA3j1i8,23476
|
|
101
103
|
cognite/neat/_rules/importers/_rdf/_owl2rules.py,sha256=gTMe94DC9xe8NR9KNVHTMTshg_NzVuN1v8Lz95BUshI,3392
|
|
102
104
|
cognite/neat/_rules/importers/_rdf/_shared.py,sha256=mxBoqFQfvHeLa4kbDYAd7FEcHe1fv97tcqHd9gmFeKk,5867
|
|
103
105
|
cognite/neat/_rules/importers/_spreadsheet2rules.py,sha256=2KhOSzNPmQgBb64L3aIARwmqY944LNP_9QciMnn7ecY,10911
|
|
104
106
|
cognite/neat/_rules/importers/_yaml2rules.py,sha256=k2oDgz--mxFVeyqQG3uvyYcb0BkFHwKHdBYHVaxtAEc,3721
|
|
105
107
|
cognite/neat/_rules/models/__init__.py,sha256=tf6tyWiYO0eC2PHCcpy208dwOHjEi9hg0sEaQLcB3uA,1024
|
|
106
108
|
cognite/neat/_rules/models/_base_input.py,sha256=kAVI6QYAzsgQ79eLPc_hANJjl-o1e9IKeD7lF61ru9Y,6656
|
|
107
|
-
cognite/neat/_rules/models/_base_rules.py,sha256=
|
|
109
|
+
cognite/neat/_rules/models/_base_rules.py,sha256=vNFHCahM9G91X1GBLkrQEE018pQF7MyT4cBzxrvhCxA,15032
|
|
108
110
|
cognite/neat/_rules/models/_rdfpath.py,sha256=hqUMZCMeI8ESdJltu7FifuUhna5JNN_Heup2aYkV56Y,11882
|
|
109
|
-
cognite/neat/_rules/models/_types.py,sha256=
|
|
111
|
+
cognite/neat/_rules/models/_types.py,sha256=gGRS8qK3Z-2buBmYtaVj8762qPNz_ToYAChZYCm8eyE,5381
|
|
110
112
|
cognite/neat/_rules/models/data_types.py,sha256=LJuWUbStlZM4hUJGExOJIJXmAA4uiA0tvO9zKqLUrQg,9805
|
|
111
113
|
cognite/neat/_rules/models/dms/__init__.py,sha256=fRaUH0IwG0YwWd_DNKM6j-jHHFyiIVz4_8DPiS1KR0Y,695
|
|
112
114
|
cognite/neat/_rules/models/dms/_exporter.py,sha256=eB5uDX06XYkQkON96eykSk7ZCegb9a5dCxTmTIr252c,28020
|
|
113
|
-
cognite/neat/_rules/models/dms/_rules.py,sha256=
|
|
114
|
-
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
|
|
115
117
|
cognite/neat/_rules/models/dms/_validation.py,sha256=PNFHsDNHJZfbHY1qt6D4t3eFOGjqe6Koa702Gzcz0I8,27734
|
|
116
118
|
cognite/neat/_rules/models/entities/__init__.py,sha256=Hlucp3LyV6ncLl79aqRTbSy2qgiGzoyN8x54D_zaJCY,1469
|
|
117
119
|
cognite/neat/_rules/models/entities/_constants.py,sha256=ToiLaaF-hGLPfn3AsKIIrfB4ZdTk4cY1RjM9gA1Qjkg,288
|
|
@@ -121,43 +123,43 @@ cognite/neat/_rules/models/entities/_single_value.py,sha256=GW1R8ko1vwjGhAs2Fl5B
|
|
|
121
123
|
cognite/neat/_rules/models/entities/_types.py,sha256=df9rnXJJKciv2Bp-Ve2q4xdEJt6WWniq12Z0hW2d6sk,1917
|
|
122
124
|
cognite/neat/_rules/models/entities/_wrapped.py,sha256=-LP20mEv8H2NAoZplP-IJud-kaMHNFWE8fqbeJmdpk4,7579
|
|
123
125
|
cognite/neat/_rules/models/information/__init__.py,sha256=lV7l8RTfWBvN_DFkzea8OzADjq0rZGgWe_0Fiwtfje0,556
|
|
124
|
-
cognite/neat/_rules/models/information/_rules.py,sha256=
|
|
125
|
-
cognite/neat/_rules/models/information/_rules_input.py,sha256=
|
|
126
|
+
cognite/neat/_rules/models/information/_rules.py,sha256=RQDcXEVZz9GG6KghpK-Vp4W_4ThoC12kfsPQdMkW75o,13766
|
|
127
|
+
cognite/neat/_rules/models/information/_rules_input.py,sha256=njpi37IxTBLH4k51tRJeASU6yQXt324NSuxcZ_CjyU8,5940
|
|
126
128
|
cognite/neat/_rules/models/information/_validation.py,sha256=HbaLShj6uumu-t9I3FUI_iKQfUDiwEkuFENHgWIPfrk,10202
|
|
127
129
|
cognite/neat/_rules/models/mapping/__init__.py,sha256=T68Hf7rhiXa7b03h4RMwarAmkGnB-Bbhc1H07b2PyC4,100
|
|
128
|
-
cognite/neat/_rules/models/mapping/_classic2core.py,sha256=
|
|
130
|
+
cognite/neat/_rules/models/mapping/_classic2core.py,sha256=AhLWoXk4PlBVA6SgBtY9dcLcpqEMaYcsiEatI19miPk,1211
|
|
129
131
|
cognite/neat/_rules/models/mapping/_classic2core.yaml,sha256=jodkmcTborWJmG3At16OChtnol696X6D4lgAa7aaQ78,20491
|
|
130
|
-
cognite/neat/_rules/transformers/__init__.py,sha256=
|
|
132
|
+
cognite/neat/_rules/transformers/__init__.py,sha256=AX1L8wIx8ql88IMQh5kShYz_-ljNkyqBs7zoXisUCKw,1241
|
|
131
133
|
cognite/neat/_rules/transformers/_base.py,sha256=sflEUKfNgCE3NNErzBMJ88VJEYB12pU1H3da40B52Yg,2556
|
|
132
|
-
cognite/neat/_rules/transformers/_converters.py,sha256=
|
|
134
|
+
cognite/neat/_rules/transformers/_converters.py,sha256=oe8g_me3Os03FC2rEoQiGHbl8SfpSZUvDySFWY5CSbM,63564
|
|
133
135
|
cognite/neat/_rules/transformers/_mapping.py,sha256=2aNJ5hcJ2hRtQAacOEC6uOTM7SdglduimepmIhRUikg,18157
|
|
134
136
|
cognite/neat/_rules/transformers/_verification.py,sha256=jKTppklUCVwVlRfYyMfnUtV8r2ACTY-AtsoMF6L-KXo,4593
|
|
135
137
|
cognite/neat/_session/__init__.py,sha256=fxQ5URVlUnmEGYyB8Baw7IDq-uYacqkigbc4b-Pr9Fw,58
|
|
136
|
-
cognite/neat/_session/_base.py,sha256=
|
|
138
|
+
cognite/neat/_session/_base.py,sha256=gY_n6NEjgbrb8qoXw62CBYgPhCSKvZ0ldLyYso1g5vQ,11882
|
|
137
139
|
cognite/neat/_session/_collector.py,sha256=SPCb1fEuOVIMHMQsVUNS7nkUUPhtUuNatnWPAIfQMcE,4093
|
|
138
|
-
cognite/neat/_session/_drop.py,sha256=
|
|
139
|
-
cognite/neat/_session/_inspect.py,sha256=
|
|
140
|
-
cognite/neat/_session/_mapping.py,sha256=
|
|
141
|
-
cognite/neat/_session/_prepare.py,sha256=
|
|
142
|
-
cognite/neat/_session/_read.py,sha256=
|
|
143
|
-
cognite/neat/_session/_set.py,sha256=
|
|
144
|
-
cognite/neat/_session/_show.py,sha256=
|
|
145
|
-
cognite/neat/_session/_state.py,sha256=
|
|
146
|
-
cognite/neat/_session/_to.py,sha256=
|
|
147
|
-
cognite/neat/_session/_wizard.py,sha256=
|
|
140
|
+
cognite/neat/_session/_drop.py,sha256=zJCser67ttsDOkyG6yfC0Ijc4t65s2JCQCUDI8Q7REQ,1612
|
|
141
|
+
cognite/neat/_session/_inspect.py,sha256=i0RgKSp9nRalCaY1uJi5JfPMkaL-thUVxyegc2QQ4cQ,8450
|
|
142
|
+
cognite/neat/_session/_mapping.py,sha256=J0nUTKfWv7EYGSxCRo_eaZFs3SjPVVgGQQaxH-x2Q0Y,2588
|
|
143
|
+
cognite/neat/_session/_prepare.py,sha256=KuGPt9OYssNDyRPAzci5i32xOjPtA-TeZrccDcQyga4,21703
|
|
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
|
|
148
150
|
cognite/neat/_session/engine/__init__.py,sha256=D3MxUorEs6-NtgoICqtZ8PISQrjrr4dvca6n48bu_bI,120
|
|
149
151
|
cognite/neat/_session/engine/_import.py,sha256=1QxA2_EK613lXYAHKQbZyw2yjo5P9XuiX4Z6_6-WMNQ,169
|
|
150
152
|
cognite/neat/_session/engine/_interface.py,sha256=ItJ1VMrPt-pKKvpSpglD9n9yFC6ehF9xV2DUVCyfQB0,533
|
|
151
153
|
cognite/neat/_session/engine/_load.py,sha256=LcoYVthQyCzLWKzRE_75_nElS-n_eMWSPAgNJBnh5dA,5193
|
|
152
|
-
cognite/neat/_session/exceptions.py,sha256=
|
|
154
|
+
cognite/neat/_session/exceptions.py,sha256=THLZRWs-CU-vST_UMg0kG982D5EYmh6SNgxBKN15A6I,2553
|
|
153
155
|
cognite/neat/_shared.py,sha256=Ov59SWYboRRsncB_5V1ZC_BAoACfNLjo80vqE5Ru6wo,2325
|
|
154
156
|
cognite/neat/_store/__init__.py,sha256=RrvuZrMdezqun5dOrwHWSk26kampZcvqiHBqSFumkEE,130
|
|
155
|
-
cognite/neat/_store/_graph_store.py,sha256=
|
|
157
|
+
cognite/neat/_store/_graph_store.py,sha256=hofChjCE1EZWxBfMpUyWP8dmU9SXIN1ZPDWuemM8LM4,26823
|
|
156
158
|
cognite/neat/_store/_provenance.py,sha256=g_u6O7jo3ZekQVtc-FfJR1fTGqD9L3ipwfSEjdHB1xM,6610
|
|
157
|
-
cognite/neat/_store/_rules_store.py,sha256=
|
|
159
|
+
cognite/neat/_store/_rules_store.py,sha256=DIfqCiIsecIx8LKj1TZ0qq5pW0p2bFv6pLgj2Rt6aCA,21413
|
|
158
160
|
cognite/neat/_store/exceptions.py,sha256=1xLtWqX-TiGcXdgayBgeNx1cipoXkye7LmTMFdpMg1s,506
|
|
159
161
|
cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
|
-
cognite/neat/_utils/auth.py,sha256=
|
|
162
|
+
cognite/neat/_utils/auth.py,sha256=0r7esRYkCp4fE42qYwsidnWP0QttJR8JhEZAj9meygc,14509
|
|
161
163
|
cognite/neat/_utils/auxiliary.py,sha256=WFOycFgoYipvDmtGvn6ZNH3H8iNZmHamrfe2kXRb8lM,6667
|
|
162
164
|
cognite/neat/_utils/collection_.py,sha256=JvYLSR6Cf8PIKGhr8HKRvep0U-z0980jbnIM_g-5I5I,2366
|
|
163
165
|
cognite/neat/_utils/graph_transformations_report.py,sha256=rjEy4XMvOygFL4UgnYOmFW6AHxaU9IXep-dmYc5654c,1230
|
|
@@ -170,10 +172,10 @@ cognite/neat/_utils/text.py,sha256=0IffvBIAmeGh92F4T6xiEdd-vv3B7FOGEMbfuTktO5Y,4
|
|
|
170
172
|
cognite/neat/_utils/time_.py,sha256=O30LUiDH9TdOYz8_a9pFqTtJdg8vEjC3qHCk8xZblG8,345
|
|
171
173
|
cognite/neat/_utils/upload.py,sha256=iWKmsQgw4EHLv-11NjYu7zAj5LtqTAfNa87a1kWeuaU,5727
|
|
172
174
|
cognite/neat/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
|
|
173
|
-
cognite/neat/_version.py,sha256=
|
|
175
|
+
cognite/neat/_version.py,sha256=spYyjCBzoNU6USA-VV_IW_pexlBvTqvkUnbgHAvjvmQ,46
|
|
174
176
|
cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
-
cognite_neat-0.
|
|
176
|
-
cognite_neat-0.
|
|
177
|
-
cognite_neat-0.
|
|
178
|
-
cognite_neat-0.
|
|
179
|
-
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
|