cognite-neat 0.107.0__py3-none-any.whl → 0.109.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 +87 -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 +144 -84
- cognite/neat/_graph/queries/_construct.py +1 -1
- cognite/neat/_graph/transformers/__init__.py +3 -1
- cognite/neat/_graph/transformers/_base.py +4 -4
- cognite/neat/_graph/transformers/_classic_cdf.py +13 -13
- cognite/neat/_graph/transformers/_prune_graph.py +3 -3
- cognite/neat/_graph/transformers/_rdfpath.py +3 -4
- cognite/neat/_graph/transformers/_value_type.py +71 -13
- cognite/neat/_issues/errors/__init__.py +2 -0
- cognite/neat/_issues/errors/_external.py +8 -0
- 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/_issues/warnings/_resources.py +1 -1
- cognite/neat/_rules/catalog/classic_model.xlsx +0 -0
- cognite/neat/_rules/exporters/_rules2instance_template.py +3 -3
- cognite/neat/_rules/exporters/_rules2yaml.py +1 -1
- 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 +310 -26
- cognite/neat/_rules/models/_base_rules.py +22 -11
- cognite/neat/_rules/models/dms/_exporter.py +5 -4
- 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 +10 -3
- cognite/neat/_rules/transformers/_base.py +6 -1
- cognite/neat/_rules/transformers/_converters.py +530 -364
- cognite/neat/_rules/transformers/_mapping.py +4 -4
- cognite/neat/_session/_base.py +100 -47
- cognite/neat/_session/_create.py +133 -0
- cognite/neat/_session/_drop.py +60 -2
- cognite/neat/_session/_fix.py +28 -0
- cognite/neat/_session/_inspect.py +22 -7
- cognite/neat/_session/_mapping.py +8 -8
- cognite/neat/_session/_prepare.py +3 -247
- cognite/neat/_session/_read.py +138 -17
- cognite/neat/_session/_set.py +50 -1
- cognite/neat/_session/_show.py +16 -43
- cognite/neat/_session/_state.py +53 -52
- cognite/neat/_session/_to.py +11 -4
- cognite/neat/_session/_wizard.py +1 -1
- cognite/neat/_session/exceptions.py +8 -1
- cognite/neat/_store/_graph_store.py +301 -146
- cognite/neat/_store/_provenance.py +36 -20
- cognite/neat/_store/_rules_store.py +253 -267
- cognite/neat/_store/exceptions.py +40 -4
- cognite/neat/_utils/auth.py +5 -3
- cognite/neat/_version.py +1 -1
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.109.0.dist-info}/METADATA +1 -1
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.109.0.dist-info}/RECORD +69 -67
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.109.0.dist-info}/LICENSE +0 -0
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.109.0.dist-info}/WHEEL +0 -0
- {cognite_neat-0.107.0.dist-info → cognite_neat-0.109.0.dist-info}/entry_points.txt +0 -0
|
@@ -2,19 +2,55 @@
|
|
|
2
2
|
|
|
3
3
|
from dataclasses import dataclass
|
|
4
4
|
|
|
5
|
+
from cognite.neat._graph.extractors import KnowledgeGraphExtractor
|
|
6
|
+
from cognite.neat._issues import IssueList
|
|
7
|
+
from cognite.neat._rules.importers import BaseImporter
|
|
8
|
+
from cognite.neat._rules.transformers import VerifiedRulesTransformer
|
|
9
|
+
|
|
10
|
+
from ._provenance import Activity
|
|
11
|
+
|
|
5
12
|
|
|
6
13
|
class NeatStoreError(Exception):
|
|
7
14
|
"""Base class for all exceptions in the store module"""
|
|
8
15
|
|
|
9
|
-
|
|
16
|
+
def __str__(self):
|
|
17
|
+
return type(self).__name__
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ActivityFailed(NeatStoreError):
|
|
21
|
+
"""Raised when an activity fails"""
|
|
22
|
+
|
|
23
|
+
def __init__(
|
|
24
|
+
self,
|
|
25
|
+
activity: Activity,
|
|
26
|
+
issue_list: IssueList,
|
|
27
|
+
tool: BaseImporter | VerifiedRulesTransformer | KnowledgeGraphExtractor,
|
|
28
|
+
) -> None:
|
|
29
|
+
self.activity = activity
|
|
30
|
+
self.issue_list = issue_list
|
|
31
|
+
self.tool = tool
|
|
32
|
+
|
|
33
|
+
def __str__(self):
|
|
34
|
+
return self.tool.description
|
|
10
35
|
|
|
11
36
|
|
|
12
37
|
@dataclass
|
|
13
|
-
class
|
|
14
|
-
"""Raised when an invalid
|
|
38
|
+
class InvalidActivityInput(NeatStoreError, RuntimeError):
|
|
39
|
+
"""Raised when an invalid activity is attempted"""
|
|
15
40
|
|
|
16
41
|
expected: tuple[type, ...]
|
|
17
|
-
|
|
42
|
+
have: tuple[type, ...]
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class InvalidActivityOutput(NeatStoreError):
|
|
46
|
+
"""Raised when an activity has an invalid output"""
|
|
47
|
+
|
|
48
|
+
def __init__(self, activity: Activity, output: str) -> None:
|
|
49
|
+
self.activity = activity
|
|
50
|
+
self.output = output
|
|
51
|
+
|
|
52
|
+
def __str__(self):
|
|
53
|
+
return f"{super().__str__()}: {self.activity.id_} -> {self.output}"
|
|
18
54
|
|
|
19
55
|
|
|
20
56
|
class EmptyStore(NeatStoreError, RuntimeError):
|
cognite/neat/_utils/auth.py
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import subprocess
|
|
3
|
-
from contextlib import suppress
|
|
3
|
+
from contextlib import redirect_stderr, redirect_stdout, suppress
|
|
4
4
|
from dataclasses import dataclass, fields
|
|
5
|
+
from io import StringIO
|
|
5
6
|
from pathlib import Path
|
|
6
7
|
from typing import Literal, TypeAlias, get_args
|
|
7
8
|
|
|
@@ -249,7 +250,7 @@ class EnvironmentVariables:
|
|
|
249
250
|
is_optional = hasattr(self, field.name.lower())
|
|
250
251
|
if is_optional and first_optional:
|
|
251
252
|
lines.append(
|
|
252
|
-
"# The below variables are the defaults, they are automatically
|
|
253
|
+
"# The below variables are the defaults, they are automatically constructed unless they are set."
|
|
253
254
|
)
|
|
254
255
|
first_optional = False
|
|
255
256
|
name = field.name.lower() if is_optional else field.name
|
|
@@ -339,7 +340,8 @@ def _prompt_cluster_and_project() -> EnvironmentVariables:
|
|
|
339
340
|
|
|
340
341
|
|
|
341
342
|
def _repo_root() -> Path | None:
|
|
342
|
-
|
|
343
|
+
# Redirecting stderr to suppress the error message if the command fails
|
|
344
|
+
with suppress(Exception), redirect_stderr(StringIO()), redirect_stdout(StringIO()):
|
|
343
345
|
result = subprocess.run("git rev-parse --show-toplevel".split(), stdout=subprocess.PIPE)
|
|
344
346
|
if (output := result.stdout.decode().strip()) != "":
|
|
345
347
|
return Path(output)
|
cognite/neat/_version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = "0.
|
|
1
|
+
__version__ = "0.109.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=OStolbvP16sM9LltZG6irG27W1tioNGwVr84-Hv6Ovk,5752
|
|
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,50 +24,50 @@ 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=BmBnCvhyujGnWlnFMvw6tV3mbUAU2XuonctQSji5Vok,18729
|
|
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=gC29GAIaswrc4aTy0dp7vMIXLUgSJgRSGp3cMoSOwcE,17307
|
|
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=
|
|
50
|
-
cognite/neat/_graph/transformers/_base.py,sha256=
|
|
51
|
-
cognite/neat/_graph/transformers/_classic_cdf.py,sha256=
|
|
49
|
+
cognite/neat/_graph/transformers/__init__.py,sha256=YQoJ2vuZ2bo1cSnzWM_exw3pkzQFiBRb-0uUMpXb178,1850
|
|
50
|
+
cognite/neat/_graph/transformers/_base.py,sha256=8W_PSlsp-jQuKNb9z-lN0Khdq1tKsnWxXAMj2XnXcTc,4561
|
|
51
|
+
cognite/neat/_graph/transformers/_classic_cdf.py,sha256=NExmfGaCjTE_7WeG2M1VnF7L71JAup3S-7t-sEiqIH4,26295
|
|
52
52
|
cognite/neat/_graph/transformers/_iodd.py,sha256=KNz1fPdKK40UaHgPMECzNZgSeU5PdPRyLdaRYdq1iug,866
|
|
53
|
-
cognite/neat/_graph/transformers/_prune_graph.py,sha256=
|
|
54
|
-
cognite/neat/_graph/transformers/_rdfpath.py,sha256=
|
|
55
|
-
cognite/neat/_graph/transformers/_value_type.py,sha256=
|
|
53
|
+
cognite/neat/_graph/transformers/_prune_graph.py,sha256=X9wVOBl3mhcPB-SSqWvJHV1hNIq7ra4_HX4_2lpT74Y,12438
|
|
54
|
+
cognite/neat/_graph/transformers/_rdfpath.py,sha256=KLNnuLmeMCobJ6Q81l5kUqUt_fkKAovzuiy9zO97sTI,5003
|
|
55
|
+
cognite/neat/_graph/transformers/_value_type.py,sha256=wsuiIKHG6O8F7PaedicMfynTxiVpLZ55zwVU3mCDEYw,15679
|
|
56
56
|
cognite/neat/_issues/__init__.py,sha256=OVgWivp_Br31p8zPeHjOEXs-Wj7lJU1pU1L3pfhfuqE,518
|
|
57
57
|
cognite/neat/_issues/_base.py,sha256=vV0E8cfXKlOnRXFIDZKg5QPMruELEbCaUfQ01l5dR9A,20073
|
|
58
|
-
cognite/neat/_issues/errors/__init__.py,sha256=
|
|
59
|
-
cognite/neat/_issues/errors/_external.py,sha256=
|
|
58
|
+
cognite/neat/_issues/errors/__init__.py,sha256=kwEuvUo9ihxDiONOjlpyLtFTfqviaXR97OJJS-176fs,2282
|
|
59
|
+
cognite/neat/_issues/errors/_external.py,sha256=KrF0_ubXlyd903ARUFZlBI45Y-I3q2FS8vSWb9t4WBI,2043
|
|
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=
|
|
70
|
-
cognite/neat/_issues/warnings/_resources.py,sha256=
|
|
68
|
+
cognite/neat/_issues/warnings/_models.py,sha256=cowgEjD7OMgTY7OpJT5WGxMFrCjdM3YUWYsw7lzroeI,4373
|
|
69
|
+
cognite/neat/_issues/warnings/_properties.py,sha256=793TAs0KUIFKx92AWEFNTfJ4rZBA9q7J08DKsEZJGwM,2915
|
|
70
|
+
cognite/neat/_issues/warnings/_resources.py,sha256=oyKVzwpMKFMaG4A-ei-5md4ap7rvvSA5RW7ZTJVwC68,3552
|
|
71
71
|
cognite/neat/_issues/warnings/user_modeling.py,sha256=_cN1wbaQUStZ13aG0VbN5UwKM9YdtyPfuSNJ1AAS6o8,3668
|
|
72
72
|
cognite/neat/_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
cognite/neat/_rules/_constants.py,sha256=lOyf7nybSYOuAE_wKmTMncHYz0Io0_J_YVnYBzjrvZA,5637
|
|
@@ -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
|
-
cognite/neat/_rules/exporters/_rules2yaml.py,sha256
|
|
89
|
+
cognite/neat/_rules/exporters/_rules2yaml.py,sha256=ggaPR8FO8PwZk1_nhwb5wVHk_C4s6qh1RrlbPkNcbBo,3160
|
|
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=8b_Ze-834oRJPCfX1yCdJMTtTNhRFCoMdwlquqjNjZI,25804
|
|
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=TpDhGaodzfzfyrSGChx76Tw_zN2YvtxqFz2lvOMHFPE,15134
|
|
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
|
-
cognite/neat/_rules/models/dms/_exporter.py,sha256=
|
|
115
|
-
cognite/neat/_rules/models/dms/_rules.py,sha256=
|
|
116
|
-
cognite/neat/_rules/models/dms/_rules_input.py,sha256=
|
|
114
|
+
cognite/neat/_rules/models/dms/_exporter.py,sha256=WFDhkFeY2kJCguru-btcvjDcbMG5ISIAQzIUtDjIlxQ,28097
|
|
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,44 @@ 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
|
|
133
|
-
cognite/neat/_rules/transformers/_base.py,sha256=
|
|
134
|
-
cognite/neat/_rules/transformers/_converters.py,sha256=
|
|
135
|
-
cognite/neat/_rules/transformers/_mapping.py,sha256=
|
|
132
|
+
cognite/neat/_rules/transformers/__init__.py,sha256=RdpV98nHB_fmkJ8MPKuWuQ5AzSc67oHB5d03D0MBFHk,1291
|
|
133
|
+
cognite/neat/_rules/transformers/_base.py,sha256=9LnjKbYIf9238PQXedkTZsMXAyEND6glUD187iEaHfc,2783
|
|
134
|
+
cognite/neat/_rules/transformers/_converters.py,sha256=dmw48thBYHFAaFmT9saD53PSBcTtjXDhKpKzVSlFJgk,66886
|
|
135
|
+
cognite/neat/_rules/transformers/_mapping.py,sha256=lf-RKN__5Bg3-tZjEOCa1Sf_JtM_ScQ_TYcnciEnaYQ,18189
|
|
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=WEAvz1b9Q8LsPOozLEUEOWLh9XWn1EtxwHw774qLi3E,11744
|
|
139
139
|
cognite/neat/_session/_collector.py,sha256=SPCb1fEuOVIMHMQsVUNS7nkUUPhtUuNatnWPAIfQMcE,4093
|
|
140
|
-
cognite/neat/_session/
|
|
141
|
-
cognite/neat/_session/
|
|
142
|
-
cognite/neat/_session/
|
|
143
|
-
cognite/neat/_session/
|
|
144
|
-
cognite/neat/_session/
|
|
145
|
-
cognite/neat/_session/
|
|
146
|
-
cognite/neat/_session/
|
|
147
|
-
cognite/neat/_session/
|
|
148
|
-
cognite/neat/_session/
|
|
149
|
-
cognite/neat/_session/
|
|
140
|
+
cognite/neat/_session/_create.py,sha256=NATzf_5u2aYKXiBmDfNCrcdzQjQsE71XPi--f_iNGcE,5239
|
|
141
|
+
cognite/neat/_session/_drop.py,sha256=gOkDAnddASpFxYxkPjlTyhkpNfnmDEj94GRI8tnHFR0,4167
|
|
142
|
+
cognite/neat/_session/_fix.py,sha256=gpmbJ4TbB_v2nw4fEA2Qtf0ifO3UDEMHGdztha28S_U,898
|
|
143
|
+
cognite/neat/_session/_inspect.py,sha256=-LdeyjmcVZbhuD7tWXaUfEiRpDHJUkpvIRiT-BzqhZ4,9025
|
|
144
|
+
cognite/neat/_session/_mapping.py,sha256=AkQwmqYH-0EgqoXHqCFwJY92hNSGzfojOelhVFlqH4c,2655
|
|
145
|
+
cognite/neat/_session/_prepare.py,sha256=WoVp2Go2RnVaL2RvnCE2-X1kS4ZWxvupOlOmWTce0i0,11626
|
|
146
|
+
cognite/neat/_session/_read.py,sha256=tx-sM8tdCFjwP8h_qXDlwYpfThuvu7s73vzM2tczqho,21941
|
|
147
|
+
cognite/neat/_session/_set.py,sha256=ZYR5G97fi-y68edbG-ftLqM_FRtn9G8V5zDtpslR9go,4070
|
|
148
|
+
cognite/neat/_session/_show.py,sha256=3hUMWBlHCyMiVTbX1GmpVFfthpv3yBIZ293aU0mDxZ8,15156
|
|
149
|
+
cognite/neat/_session/_state.py,sha256=KYmt1QEFu0LoXBuheu0ARA9gq2FsQvjyDWcJt_OiPHQ,3939
|
|
150
|
+
cognite/neat/_session/_to.py,sha256=e6A2BeSL9NjQz1Fk2_RaJom7NPZErILqGi_UFDXWCZQ,10897
|
|
151
|
+
cognite/neat/_session/_wizard.py,sha256=9idlzhZy54h2Iwupe9iXKX3RDb5jJQuBZFEouni50L0,1476
|
|
150
152
|
cognite/neat/_session/engine/__init__.py,sha256=D3MxUorEs6-NtgoICqtZ8PISQrjrr4dvca6n48bu_bI,120
|
|
151
153
|
cognite/neat/_session/engine/_import.py,sha256=1QxA2_EK613lXYAHKQbZyw2yjo5P9XuiX4Z6_6-WMNQ,169
|
|
152
154
|
cognite/neat/_session/engine/_interface.py,sha256=ItJ1VMrPt-pKKvpSpglD9n9yFC6ehF9xV2DUVCyfQB0,533
|
|
153
155
|
cognite/neat/_session/engine/_load.py,sha256=LcoYVthQyCzLWKzRE_75_nElS-n_eMWSPAgNJBnh5dA,5193
|
|
154
|
-
cognite/neat/_session/exceptions.py,sha256=
|
|
156
|
+
cognite/neat/_session/exceptions.py,sha256=6wx3gAqU_nuXMAwuPijGvJg3NSSimXyNSefWa_p5Lo8,2717
|
|
155
157
|
cognite/neat/_shared.py,sha256=Ov59SWYboRRsncB_5V1ZC_BAoACfNLjo80vqE5Ru6wo,2325
|
|
156
158
|
cognite/neat/_store/__init__.py,sha256=RrvuZrMdezqun5dOrwHWSk26kampZcvqiHBqSFumkEE,130
|
|
157
|
-
cognite/neat/_store/_graph_store.py,sha256=
|
|
158
|
-
cognite/neat/_store/_provenance.py,sha256=
|
|
159
|
-
cognite/neat/_store/_rules_store.py,sha256=
|
|
160
|
-
cognite/neat/_store/exceptions.py,sha256=
|
|
159
|
+
cognite/neat/_store/_graph_store.py,sha256=ru0wuJtBAZoN2HJOJhBmldAsbRpp9zMcIcwfTzEcsN0,26882
|
|
160
|
+
cognite/neat/_store/_provenance.py,sha256=TgEtFc3RmdYO_hAj7NWgB_sj57DGoSxOiIFRAdYVeNM,7168
|
|
161
|
+
cognite/neat/_store/_rules_store.py,sha256=ABBdEElx3va4F62IFebF99tkGF1cQ3qfQ0ibVnGHRtQ,16218
|
|
162
|
+
cognite/neat/_store/exceptions.py,sha256=fbed_CGDdYU4oELgCL0_c5d85HGrUiYvXmL2D0WIDww,1593
|
|
161
163
|
cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
|
-
cognite/neat/_utils/auth.py,sha256=
|
|
164
|
+
cognite/neat/_utils/auth.py,sha256=hpNQjXpM3i7r0RU13ZLen1sa78nvPd4E1Sh3j1TMK4g,14701
|
|
163
165
|
cognite/neat/_utils/auxiliary.py,sha256=WFOycFgoYipvDmtGvn6ZNH3H8iNZmHamrfe2kXRb8lM,6667
|
|
164
166
|
cognite/neat/_utils/collection_.py,sha256=JvYLSR6Cf8PIKGhr8HKRvep0U-z0980jbnIM_g-5I5I,2366
|
|
165
167
|
cognite/neat/_utils/graph_transformations_report.py,sha256=rjEy4XMvOygFL4UgnYOmFW6AHxaU9IXep-dmYc5654c,1230
|
|
@@ -172,10 +174,10 @@ cognite/neat/_utils/text.py,sha256=0IffvBIAmeGh92F4T6xiEdd-vv3B7FOGEMbfuTktO5Y,4
|
|
|
172
174
|
cognite/neat/_utils/time_.py,sha256=O30LUiDH9TdOYz8_a9pFqTtJdg8vEjC3qHCk8xZblG8,345
|
|
173
175
|
cognite/neat/_utils/upload.py,sha256=iWKmsQgw4EHLv-11NjYu7zAj5LtqTAfNa87a1kWeuaU,5727
|
|
174
176
|
cognite/neat/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
|
|
175
|
-
cognite/neat/_version.py,sha256=
|
|
177
|
+
cognite/neat/_version.py,sha256=c4wxycTdwtXNOhkXzQOSDR2zGhasMvyx0oPIJFa4JQ0,46
|
|
176
178
|
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.
|
|
179
|
+
cognite_neat-0.109.0.dist-info/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
|
|
180
|
+
cognite_neat-0.109.0.dist-info/METADATA,sha256=K9HPjBYFzqFnNVscJ5F8iD91b0p-ovHgijdYwflgGNc,5361
|
|
181
|
+
cognite_neat-0.109.0.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
182
|
+
cognite_neat-0.109.0.dist-info/entry_points.txt,sha256=SsQlnl8SNMSSjE3acBI835JYFtsIinLSbVmHmMEXv6E,51
|
|
183
|
+
cognite_neat-0.109.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|