cognite-neat 0.99.1__py3-none-any.whl → 0.100.1__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/_client/_api/data_modeling_loaders.py +403 -182
- cognite/neat/_client/data_classes/data_modeling.py +4 -0
- cognite/neat/_graph/extractors/_base.py +7 -0
- cognite/neat/_graph/extractors/_classic_cdf/_classic.py +23 -13
- cognite/neat/_graph/loaders/_rdf2dms.py +50 -11
- cognite/neat/_graph/transformers/__init__.py +3 -3
- cognite/neat/_graph/transformers/_classic_cdf.py +120 -52
- cognite/neat/_issues/warnings/__init__.py +2 -0
- cognite/neat/_issues/warnings/_resources.py +15 -0
- cognite/neat/_rules/analysis/_base.py +15 -5
- cognite/neat/_rules/analysis/_dms.py +20 -0
- cognite/neat/_rules/analysis/_information.py +22 -0
- cognite/neat/_rules/exporters/_base.py +3 -5
- cognite/neat/_rules/exporters/_rules2dms.py +192 -200
- cognite/neat/_rules/importers/_rdf/_inference2rules.py +22 -5
- cognite/neat/_rules/models/_base_rules.py +19 -0
- cognite/neat/_rules/models/_types.py +5 -0
- cognite/neat/_rules/models/dms/_exporter.py +215 -93
- cognite/neat/_rules/models/dms/_rules.py +4 -4
- cognite/neat/_rules/models/dms/_rules_input.py +8 -3
- cognite/neat/_rules/models/dms/_validation.py +42 -11
- cognite/neat/_rules/models/entities/_multi_value.py +3 -0
- cognite/neat/_rules/models/information/_rules.py +17 -2
- cognite/neat/_rules/models/information/_rules_input.py +11 -2
- cognite/neat/_rules/models/information/_validation.py +99 -3
- cognite/neat/_rules/models/mapping/_classic2core.yaml +1 -1
- cognite/neat/_rules/transformers/__init__.py +2 -1
- cognite/neat/_rules/transformers/_converters.py +163 -61
- cognite/neat/_rules/transformers/_mapping.py +132 -2
- cognite/neat/_session/_base.py +42 -31
- cognite/neat/_session/_mapping.py +105 -5
- cognite/neat/_session/_prepare.py +43 -9
- cognite/neat/_session/_read.py +50 -4
- cognite/neat/_session/_set.py +1 -0
- cognite/neat/_session/_to.py +36 -13
- cognite/neat/_session/_wizard.py +5 -0
- cognite/neat/_session/engine/_interface.py +3 -2
- cognite/neat/_store/_base.py +79 -19
- cognite/neat/_utils/collection_.py +22 -0
- cognite/neat/_utils/rdf_.py +24 -0
- cognite/neat/_version.py +2 -2
- cognite/neat/_workflows/steps/lib/current/rules_exporter.py +3 -3
- {cognite_neat-0.99.1.dist-info → cognite_neat-0.100.1.dist-info}/METADATA +1 -1
- {cognite_neat-0.99.1.dist-info → cognite_neat-0.100.1.dist-info}/RECORD +47 -47
- {cognite_neat-0.99.1.dist-info → cognite_neat-0.100.1.dist-info}/LICENSE +0 -0
- {cognite_neat-0.99.1.dist-info → cognite_neat-0.100.1.dist-info}/WHEEL +0 -0
- {cognite_neat-0.99.1.dist-info → cognite_neat-0.100.1.dist-info}/entry_points.txt +0 -0
cognite/neat/_session/_to.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from collections.abc import Collection
|
|
1
2
|
from pathlib import Path
|
|
2
3
|
from typing import Any, Literal, overload
|
|
3
4
|
|
|
@@ -9,6 +10,7 @@ from cognite.neat._issues import IssueList, catch_warnings
|
|
|
9
10
|
from cognite.neat._rules import exporters
|
|
10
11
|
from cognite.neat._rules._constants import PATTERNS
|
|
11
12
|
from cognite.neat._rules._shared import VerifiedRules
|
|
13
|
+
from cognite.neat._rules.exporters._rules2dms import Component
|
|
12
14
|
from cognite.neat._utils.upload import UploadResultCore, UploadResultList
|
|
13
15
|
|
|
14
16
|
from ._state import SessionState
|
|
@@ -51,7 +53,24 @@ class ToAPI:
|
|
|
51
53
|
@overload
|
|
52
54
|
def yaml(self, io: Any, format: Literal["neat", "toolkit"] = "neat") -> None: ...
|
|
53
55
|
|
|
54
|
-
def yaml(
|
|
56
|
+
def yaml(
|
|
57
|
+
self, io: Any | None = None, format: Literal["neat", "toolkit"] = "neat", skip_system_spaces: bool = True
|
|
58
|
+
) -> str | None:
|
|
59
|
+
"""Export the verified data model to YAML.
|
|
60
|
+
|
|
61
|
+
Args:
|
|
62
|
+
io: The file path or file-like object to write the YAML file to. Defaults to None.
|
|
63
|
+
format: The format of the YAML file. Defaults to "neat".
|
|
64
|
+
skip_system_spaces: If True, system spaces will be skipped. Defaults to True.
|
|
65
|
+
|
|
66
|
+
... note::
|
|
67
|
+
|
|
68
|
+
- "neat": This is the format Neat uses to store the data model.
|
|
69
|
+
- "toolkit": This is the format used by Cognite Toolkit, that matches the CDF API.
|
|
70
|
+
|
|
71
|
+
Returns:
|
|
72
|
+
str | None: If io is None, the YAML string will be returned. Otherwise, None will be returned.
|
|
73
|
+
"""
|
|
55
74
|
if format == "neat":
|
|
56
75
|
exporter = exporters.YAMLExporter()
|
|
57
76
|
last_verified = self._state.data_model.last_verified_rule[1]
|
|
@@ -69,7 +88,7 @@ class ToAPI:
|
|
|
69
88
|
user_path = Path(io)
|
|
70
89
|
if user_path.suffix == "" and not user_path.exists():
|
|
71
90
|
user_path.mkdir(parents=True)
|
|
72
|
-
exporters.DMSExporter().export_to_file(dms_rule, user_path)
|
|
91
|
+
exporters.DMSExporter(remove_cdf_spaces=skip_system_spaces).export_to_file(dms_rule, user_path)
|
|
73
92
|
else:
|
|
74
93
|
raise NeatSessionError("Please provide a valid format. 'neat' or 'toolkit'")
|
|
75
94
|
|
|
@@ -109,37 +128,41 @@ class CDFToAPI:
|
|
|
109
128
|
|
|
110
129
|
def data_model(
|
|
111
130
|
self,
|
|
112
|
-
|
|
131
|
+
existing: Literal["fail", "skip", "update", "force", "recreate"] = "update",
|
|
113
132
|
dry_run: bool = False,
|
|
114
|
-
|
|
115
|
-
|
|
133
|
+
drop_data: bool = False,
|
|
134
|
+
components: Component | Collection[Component] | None = None,
|
|
135
|
+
) -> UploadResultList:
|
|
116
136
|
"""Export the verified DMS data model to CDF.
|
|
117
137
|
|
|
118
138
|
Args:
|
|
119
|
-
|
|
139
|
+
existing: What to do if the component already exists. Defaults to "update".
|
|
140
|
+
See the note below for more information about the options.
|
|
120
141
|
dry_run: If True, no changes will be made to CDF. Defaults to False.
|
|
121
|
-
|
|
142
|
+
drop_data: If existing is 'force' or 'recreate' and the operation will lead to data loss,
|
|
143
|
+
the component will be skipped unless drop_data is True. Defaults to False.
|
|
144
|
+
Note this only applies to spaces and containers if they contain data.
|
|
145
|
+
components: The components to export. If None, all components will be exported. Defaults to None.
|
|
122
146
|
|
|
123
147
|
... note::
|
|
124
148
|
|
|
125
149
|
- "fail": If any component already exists, the export will fail.
|
|
126
150
|
- "skip": If any component already exists, it will be skipped.
|
|
127
151
|
- "update": If any component already exists, it will be updated.
|
|
128
|
-
- "force": If any component already exists, it will be deleted and recreated.
|
|
152
|
+
- "force": If any component already exists, and the update fails, it will be deleted and recreated.
|
|
153
|
+
- "recreate": All components will be deleted and recreated.
|
|
129
154
|
|
|
130
155
|
"""
|
|
131
156
|
|
|
132
|
-
exporter = exporters.DMSExporter(
|
|
157
|
+
exporter = exporters.DMSExporter(existing=existing, export_components=components, drop_data=drop_data)
|
|
133
158
|
|
|
134
159
|
if not self._client:
|
|
135
160
|
raise NeatSessionError("No client provided!")
|
|
136
161
|
|
|
137
162
|
conversion_issues = IssueList(action="to.cdf.data_model")
|
|
138
163
|
with catch_warnings(conversion_issues):
|
|
139
|
-
result = exporter.export_to_cdf(
|
|
140
|
-
self._state.data_model.last_verified_dms_rules[1], self._client, dry_run, fallback_one_by_one
|
|
141
|
-
)
|
|
164
|
+
result = exporter.export_to_cdf(self._state.data_model.last_verified_dms_rules[1], self._client, dry_run)
|
|
142
165
|
result.insert(0, UploadResultCore(name="schema", issues=conversion_issues))
|
|
143
166
|
self._state.data_model.outcome.append(result)
|
|
144
|
-
print("You can inspect the details with the .inspect.data_model
|
|
167
|
+
print("You can inspect the details with the .inspect.outcome.data_model(...) method.")
|
|
145
168
|
return result
|
cognite/neat/_session/_wizard.py
CHANGED
|
@@ -7,12 +7,17 @@ from cognite.neat._rules._constants import PATTERNS
|
|
|
7
7
|
|
|
8
8
|
RDFFileType = Literal["Ontology", "IMF Types", "Inference"]
|
|
9
9
|
NeatObjectType = Literal["Data Model", "Instances"]
|
|
10
|
+
XMLFileType = Literal["dexpi", "aml"]
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
def object_wizard(message: str = "Select object") -> NeatObjectType:
|
|
13
14
|
return _selection(message, get_args(NeatObjectType))
|
|
14
15
|
|
|
15
16
|
|
|
17
|
+
def xml_format_wizard(message: str = "Select XML format") -> XMLFileType:
|
|
18
|
+
return _selection(message, get_args(XMLFileType))
|
|
19
|
+
|
|
20
|
+
|
|
16
21
|
def rdf_dm_wizard(message: str = "Select source:") -> RDFFileType:
|
|
17
22
|
return _selection(message, get_args(RDFFileType))
|
|
18
23
|
|
|
@@ -9,14 +9,15 @@ class Extractor(Protocol):
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class ConfigAPI(Protocol):
|
|
12
|
-
|
|
12
|
+
format: str | None = None
|
|
13
13
|
file: Any | None
|
|
14
14
|
type: str | None
|
|
15
15
|
primary_key: str | None
|
|
16
|
+
mapping: Any | None = None
|
|
16
17
|
|
|
17
18
|
|
|
18
19
|
class NeatEngine(Protocol):
|
|
19
|
-
version: str = "
|
|
20
|
+
version: str = "2.0.0"
|
|
20
21
|
|
|
21
22
|
@property
|
|
22
23
|
def set(self) -> ConfigAPI: ...
|
cognite/neat/_store/_base.py
CHANGED
|
@@ -174,34 +174,68 @@ class NeatGraphStore:
|
|
|
174
174
|
self._add_triples(extractor.extract())
|
|
175
175
|
|
|
176
176
|
if success:
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
)
|
|
177
|
+
_end = datetime.now(timezone.utc)
|
|
178
|
+
# Need to do the hasattr in case the extractor comes from NeatEngine.
|
|
179
|
+
activities = (
|
|
180
|
+
extractor._get_activity_names()
|
|
181
|
+
if hasattr(extractor, "_get_activity_names")
|
|
182
|
+
else [type(extractor).__name__]
|
|
184
183
|
)
|
|
184
|
+
for activity in activities:
|
|
185
|
+
self.provenance.append(
|
|
186
|
+
Change.record(
|
|
187
|
+
activity=activity,
|
|
188
|
+
start=_start,
|
|
189
|
+
end=_end,
|
|
190
|
+
description=f"Extracted triples to graph store using {type(extractor).__name__}",
|
|
191
|
+
)
|
|
192
|
+
)
|
|
185
193
|
|
|
186
|
-
def
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
if
|
|
194
|
+
def _read_via_rules_linkage(
|
|
195
|
+
self, class_neat_id: URIRef, property_link_pairs: dict[str, URIRef] | None
|
|
196
|
+
) -> Iterable[tuple[str, dict[str | InstanceType, list[str]]]]:
|
|
197
|
+
if self.rules is None:
|
|
190
198
|
warnings.warn("Rules not found in graph store!", stacklevel=2)
|
|
191
|
-
return
|
|
199
|
+
return
|
|
200
|
+
|
|
201
|
+
if cls := InformationAnalysis(self.rules).classes_by_neat_id.get(class_neat_id):
|
|
202
|
+
if property_link_pairs:
|
|
203
|
+
property_renaming_config = {
|
|
204
|
+
prop_uri: prop_name
|
|
205
|
+
for prop_name, prop_neat_id in property_link_pairs.items()
|
|
206
|
+
if (
|
|
207
|
+
prop_uri := InformationAnalysis(self.rules).neat_id_to_transformation_property_uri(prop_neat_id)
|
|
208
|
+
)
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
yield from self._read_via_class_entity(cls.class_, property_renaming_config)
|
|
212
|
+
return
|
|
213
|
+
else:
|
|
214
|
+
warnings.warn("Rules not linked", stacklevel=2)
|
|
215
|
+
return
|
|
216
|
+
else:
|
|
217
|
+
warnings.warn("Class with neat id {class_neat_id} found in rules", stacklevel=2)
|
|
218
|
+
return
|
|
192
219
|
|
|
193
|
-
|
|
220
|
+
def _read_via_class_entity(
|
|
221
|
+
self,
|
|
222
|
+
class_entity: ClassEntity,
|
|
223
|
+
property_renaming_config: dict[URIRef, str] | None = None,
|
|
224
|
+
) -> Iterable[tuple[str, dict[str | InstanceType, list[str]]]]:
|
|
225
|
+
if self.rules is None:
|
|
226
|
+
warnings.warn("Rules not found in graph store!", stacklevel=2)
|
|
227
|
+
return
|
|
194
228
|
|
|
195
229
|
if class_entity not in [definition.class_ for definition in self.rules.classes]:
|
|
196
230
|
warnings.warn("Desired type not found in graph!", stacklevel=2)
|
|
197
|
-
return
|
|
231
|
+
return
|
|
198
232
|
|
|
199
233
|
if not (class_uri := InformationAnalysis(self.rules).class_uri(class_entity)):
|
|
200
234
|
warnings.warn(
|
|
201
|
-
f"Class {
|
|
235
|
+
f"Class {class_entity.suffix} does not have namespace defined for prefix {class_entity.prefix} Rules!",
|
|
202
236
|
stacklevel=2,
|
|
203
237
|
)
|
|
204
|
-
return
|
|
238
|
+
return
|
|
205
239
|
|
|
206
240
|
has_hop_transformations = InformationAnalysis(self.rules).has_hop_transformations()
|
|
207
241
|
has_self_reference_transformations = InformationAnalysis(
|
|
@@ -221,13 +255,15 @@ class NeatGraphStore:
|
|
|
221
255
|
msg,
|
|
222
256
|
stacklevel=2,
|
|
223
257
|
)
|
|
224
|
-
return
|
|
258
|
+
return
|
|
225
259
|
|
|
226
260
|
# get all the instances for give class_uri
|
|
227
261
|
instance_ids = self.queries.list_instances_ids_of_class(class_uri)
|
|
228
262
|
|
|
229
263
|
# get potential property renaming config
|
|
230
|
-
property_renaming_config = InformationAnalysis(
|
|
264
|
+
property_renaming_config = property_renaming_config or InformationAnalysis(
|
|
265
|
+
self.rules
|
|
266
|
+
).define_property_renaming_config(class_entity)
|
|
231
267
|
|
|
232
268
|
# get property types to guide process of removing or not namespaces from results
|
|
233
269
|
property_types = InformationAnalysis(self.rules).property_types(class_entity)
|
|
@@ -235,12 +271,36 @@ class NeatGraphStore:
|
|
|
235
271
|
for instance_id in instance_ids:
|
|
236
272
|
if res := self.queries.describe(
|
|
237
273
|
instance_id=instance_id,
|
|
238
|
-
instance_type=
|
|
274
|
+
instance_type=class_entity.suffix,
|
|
239
275
|
property_renaming_config=property_renaming_config,
|
|
240
276
|
property_types=property_types,
|
|
241
277
|
):
|
|
242
278
|
yield res
|
|
243
279
|
|
|
280
|
+
def read(
|
|
281
|
+
self,
|
|
282
|
+
class_: str,
|
|
283
|
+
) -> Iterable[tuple[str, dict[str | InstanceType, list[str]]]]:
|
|
284
|
+
"""Read instances for given class from the graph store.
|
|
285
|
+
|
|
286
|
+
!!! note "Assumption"
|
|
287
|
+
This method assumes that the class_ belongs to the same (name)space as
|
|
288
|
+
the rules which are attached to the graph store.
|
|
289
|
+
|
|
290
|
+
"""
|
|
291
|
+
|
|
292
|
+
if not self.rules:
|
|
293
|
+
warnings.warn("Rules not found in graph store!", stacklevel=2)
|
|
294
|
+
return
|
|
295
|
+
|
|
296
|
+
class_entity = ClassEntity(prefix=self.rules.metadata.prefix, suffix=class_)
|
|
297
|
+
|
|
298
|
+
if class_entity not in [definition.class_ for definition in self.rules.classes]:
|
|
299
|
+
warnings.warn("Desired type not found in graph!", stacklevel=2)
|
|
300
|
+
return
|
|
301
|
+
|
|
302
|
+
yield from self._read_via_class_entity(class_entity)
|
|
303
|
+
|
|
244
304
|
def _parse_file(
|
|
245
305
|
self,
|
|
246
306
|
filepath: Path,
|
|
@@ -2,6 +2,8 @@ from collections import Counter
|
|
|
2
2
|
from collections.abc import Iterable, Sequence
|
|
3
3
|
from typing import TypeVar
|
|
4
4
|
|
|
5
|
+
from cognite.neat._constants import IN_PYODIDE
|
|
6
|
+
|
|
5
7
|
T_Element = TypeVar("T_Element")
|
|
6
8
|
|
|
7
9
|
|
|
@@ -21,3 +23,23 @@ def chunker(sequence: Sequence[T_Element], chunk_size: int) -> Iterable[Sequence
|
|
|
21
23
|
|
|
22
24
|
def remove_list_elements(input_list: list, elements_to_remove: list) -> list:
|
|
23
25
|
return [element for element in input_list if element not in elements_to_remove]
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def iterate_progress_bar(iterable: Iterable[T_Element], total: int, description: str) -> Iterable[T_Element]:
|
|
29
|
+
if IN_PYODIDE:
|
|
30
|
+
try:
|
|
31
|
+
from tqdm import tqdm # type: ignore [import]
|
|
32
|
+
except ModuleNotFoundError:
|
|
33
|
+
return iterable
|
|
34
|
+
return tqdm(iterable, total=total, desc=description)
|
|
35
|
+
# Progress bar from rich requires multi-threading, which is not supported in Pyodide
|
|
36
|
+
try:
|
|
37
|
+
from rich.progress import track
|
|
38
|
+
except ModuleNotFoundError:
|
|
39
|
+
return iterable
|
|
40
|
+
|
|
41
|
+
return track(
|
|
42
|
+
iterable,
|
|
43
|
+
total=total,
|
|
44
|
+
description=description,
|
|
45
|
+
)
|
cognite/neat/_utils/rdf_.py
CHANGED
|
@@ -208,6 +208,30 @@ def add_triples_in_batch(graph: Graph, triples: Iterable[Triple], batch_size: in
|
|
|
208
208
|
check_commit(force_commit=True)
|
|
209
209
|
|
|
210
210
|
|
|
211
|
+
def remove_triples_in_batch(graph: Graph, triples: Iterable[Triple], batch_size: int = 10_000) -> None:
|
|
212
|
+
"""Removes triples from the graph store in batches.
|
|
213
|
+
|
|
214
|
+
Args:
|
|
215
|
+
triples: list of triples to be removed from the graph store
|
|
216
|
+
batch_size: Batch size of triples per commit, by default 10_000
|
|
217
|
+
"""
|
|
218
|
+
batch_count = 0
|
|
219
|
+
|
|
220
|
+
def check_commit(force_commit: bool = False):
|
|
221
|
+
"""Commit nodes to the graph if batch counter is reached or if force_commit is True"""
|
|
222
|
+
nonlocal batch_count
|
|
223
|
+
batch_count += 1
|
|
224
|
+
if force_commit or batch_count >= batch_size:
|
|
225
|
+
graph.commit()
|
|
226
|
+
batch_count = 0
|
|
227
|
+
return
|
|
228
|
+
|
|
229
|
+
for triple in triples:
|
|
230
|
+
graph.remove(triple)
|
|
231
|
+
check_commit()
|
|
232
|
+
check_commit(force_commit=True)
|
|
233
|
+
|
|
234
|
+
|
|
211
235
|
def remove_instance_ids_in_batch(graph: Graph, instance_ids: Iterable[URIRef], batch_size: int = 1_000) -> None:
|
|
212
236
|
"""Removes all triples related to the given instances in the graph store in batches.
|
|
213
237
|
|
cognite/neat/_version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = "0.
|
|
2
|
-
__engine__ = "^
|
|
1
|
+
__version__ = "0.100.1"
|
|
2
|
+
__engine__ = "^2.0.1"
|
|
@@ -67,7 +67,7 @@ class DeleteDataModelFromCDF(Step):
|
|
|
67
67
|
if self.configs is None or self.data_store_path is None:
|
|
68
68
|
raise WorkflowStepNotInitializedError(type(self).__name__)
|
|
69
69
|
components_to_delete = {
|
|
70
|
-
cast(Literal["
|
|
70
|
+
cast(Literal["spaces", "data_models", "views", "containers"], key)
|
|
71
71
|
for key, value in self.complex_configs["Components"].items()
|
|
72
72
|
if value
|
|
73
73
|
}
|
|
@@ -180,7 +180,7 @@ class RulesToDMS(Step):
|
|
|
180
180
|
)
|
|
181
181
|
multi_space_components_create: bool = self.configs["Multi-space components create"] == "True"
|
|
182
182
|
components_to_create = {
|
|
183
|
-
cast(Literal["
|
|
183
|
+
cast(Literal["spaces", "data_models", "views", "containers"], key)
|
|
184
184
|
for key, value in self.complex_configs["Components"].items()
|
|
185
185
|
if value
|
|
186
186
|
}
|
|
@@ -208,7 +208,7 @@ class RulesToDMS(Step):
|
|
|
208
208
|
dms_exporter = exporters.DMSExporter(
|
|
209
209
|
export_components=frozenset(components_to_create),
|
|
210
210
|
include_space=(None if multi_space_components_create else {dms_rules.metadata.space}),
|
|
211
|
-
|
|
211
|
+
existing=existing_components_handling,
|
|
212
212
|
)
|
|
213
213
|
|
|
214
214
|
output_dir = self.config.staging_path
|
|
@@ -73,11 +73,11 @@ cognite/neat/_app/ui/neat-app/src/views/WorkflowView.tsx,sha256=dU6xZip3MVaVzKAF
|
|
|
73
73
|
cognite/neat/_app/ui/neat-app/tsconfig.json,sha256=sw7AweQXRyJAIQ8Beft_380Q8zBr54pG1P_wutdPAIQ,664
|
|
74
74
|
cognite/neat/_client/__init__.py,sha256=XpWT30mZdAJNHV84NJAWyAd2jZEGq9-IwvwK_wsOHdQ,177
|
|
75
75
|
cognite/neat/_client/_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
-
cognite/neat/_client/_api/data_modeling_loaders.py,sha256=
|
|
76
|
+
cognite/neat/_client/_api/data_modeling_loaders.py,sha256=SBAz0MDJjw7FWjZOLpZZWJ741DdiEYI16iEJu_u5iuQ,33965
|
|
77
77
|
cognite/neat/_client/_api/schema.py,sha256=ZxO9FkgFGF_sI6yVmrztWvb2zo7Exgxtq4-SX2dpISY,4830
|
|
78
78
|
cognite/neat/_client/_api_client.py,sha256=6cNMizDuqMJZiOqiNRLX46BEtlCB-BpgGLyypksRVYU,616
|
|
79
79
|
cognite/neat/_client/data_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
-
cognite/neat/_client/data_classes/data_modeling.py,sha256=
|
|
80
|
+
cognite/neat/_client/data_classes/data_modeling.py,sha256=RvpUp9ygd-yffQFJ7O2mQqMLDPIa-dmip5zPb8QVIiw,6672
|
|
81
81
|
cognite/neat/_client/data_classes/schema.py,sha256=hYKcrxXf90tA2NIqwBOzw9_hb4OanF9dwwPnur6MEfg,22904
|
|
82
82
|
cognite/neat/_config.py,sha256=f9Py4SEHwYYquIg-k1rC7MbXBLENXQauoZtLyUbWvJQ,10118
|
|
83
83
|
cognite/neat/_constants.py,sha256=KtAU74aQUy6FpmejwxDaXP5UwsqA8DJy-MTEoFw1UHg,2621
|
|
@@ -91,11 +91,11 @@ cognite/neat/_graph/examples/Knowledge-Graph-Nordic44.xml,sha256=U2Ns-M4LRjT1fBk
|
|
|
91
91
|
cognite/neat/_graph/examples/__init__.py,sha256=yAjHVY3b5jOjmbW-iLbhvu7BG014TpGi3K4igkDqW5I,368
|
|
92
92
|
cognite/neat/_graph/examples/skos-capturing-sheet-wind-topics.xlsx,sha256=CV_yK5ZSbYS_ktfIZUPD8Sevs47zpswLXQUDFkGE4Gw,45798
|
|
93
93
|
cognite/neat/_graph/extractors/__init__.py,sha256=JSq2QIiJKDwrttGL8lFiEhScNJfWglM_vZNJq9IWBfQ,2110
|
|
94
|
-
cognite/neat/_graph/extractors/_base.py,sha256=
|
|
94
|
+
cognite/neat/_graph/extractors/_base.py,sha256=xvoK8ZCu7OOvqcI9glOLEh1DxqW_TA1xYPI5tQQG_50,859
|
|
95
95
|
cognite/neat/_graph/extractors/_classic_cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
96
|
cognite/neat/_graph/extractors/_classic_cdf/_assets.py,sha256=9WVFrAtUFAp_AAlb26Rtt2Axz9xsPQYetg7SKVrNCr4,1474
|
|
97
97
|
cognite/neat/_graph/extractors/_classic_cdf/_base.py,sha256=OTQOb0OLIBL-l1zNYIFyJ0Wnpfqtw90kSZu6JYteLo4,11087
|
|
98
|
-
cognite/neat/_graph/extractors/_classic_cdf/_classic.py,sha256=
|
|
98
|
+
cognite/neat/_graph/extractors/_classic_cdf/_classic.py,sha256=aKo5Z5eKMZuyq9k6Uxk-yizvBnPNVc_58lIGoKrOEMU,11206
|
|
99
99
|
cognite/neat/_graph/extractors/_classic_cdf/_data_sets.py,sha256=xRFv9pVFgIMTZ45E8teMC0Ynku_CuZdcZkVCbhPuPBk,1294
|
|
100
100
|
cognite/neat/_graph/extractors/_classic_cdf/_events.py,sha256=B8hRoMAg8GQvApjxals5PfPyjmdPO93U3nj_G7g0kDQ,1394
|
|
101
101
|
cognite/neat/_graph/extractors/_classic_cdf/_files.py,sha256=Q816cVQ9qS7Art66HJfErL2OV7MxH_eSIG7bJ8_HJ7Q,1406
|
|
@@ -110,14 +110,14 @@ cognite/neat/_graph/extractors/_mock_graph_generator.py,sha256=yEqQdbnRQjBXVQIEV
|
|
|
110
110
|
cognite/neat/_graph/extractors/_rdf_file.py,sha256=YgPZN4Ayk6UlbwFFjdWn4Yo3P74D8KeNUb3slXg6Ox8,1604
|
|
111
111
|
cognite/neat/_graph/loaders/__init__.py,sha256=1eam_rG1BXTUJ8iDm8_IYZldEe177vn2GmHihDBi8qk,718
|
|
112
112
|
cognite/neat/_graph/loaders/_base.py,sha256=tjplRd-vbWhWyys0Ll3KgHR3F3ETlP_dXJ3e8F8w15M,3984
|
|
113
|
-
cognite/neat/_graph/loaders/_rdf2dms.py,sha256=
|
|
113
|
+
cognite/neat/_graph/loaders/_rdf2dms.py,sha256=KMe0T5jvGbgdo3RQijDtTSeWpU_ovGXWBGR1dZ_IjEM,17472
|
|
114
114
|
cognite/neat/_graph/queries/__init__.py,sha256=BgDd-037kvtWwAoGAy8eORVNMiZ5-E9sIV0txIpeaN4,50
|
|
115
115
|
cognite/neat/_graph/queries/_base.py,sha256=dKEk8TDYUxIc71peqD9TfHHoILG9cKzjkFp7CAkbF78,14246
|
|
116
116
|
cognite/neat/_graph/queries/_construct.py,sha256=CW8uHtXXACUXDj1AcEjROXtvoiuyx0CTgZ0bURY5Neo,7213
|
|
117
117
|
cognite/neat/_graph/queries/_shared.py,sha256=K3svLkvw-DWPZUwIwpJRjPKg5UIRKFCn5jBLpuJjiHc,5330
|
|
118
|
-
cognite/neat/_graph/transformers/__init__.py,sha256=
|
|
118
|
+
cognite/neat/_graph/transformers/__init__.py,sha256=SJtcfzztdy6f_D1X5OowLO4Huv4HO_wRKizSY3orrV0,978
|
|
119
119
|
cognite/neat/_graph/transformers/_base.py,sha256=b37Ek-9njuM5pTR_3XhnxCMrg_ip_2BMwM7ZhKpAAlw,328
|
|
120
|
-
cognite/neat/_graph/transformers/_classic_cdf.py,sha256=
|
|
120
|
+
cognite/neat/_graph/transformers/_classic_cdf.py,sha256=8vzvoHH2YJMg2mMTEH_ASGWn1Maars1N1RZ9jWhLTkY,19291
|
|
121
121
|
cognite/neat/_graph/transformers/_iodd.py,sha256=yH-BvVQUswM8RmV2VvOPQAgwudhBJdxDLHW1RKxuuAY,729
|
|
122
122
|
cognite/neat/_graph/transformers/_prune_graph.py,sha256=jmmnihEr8ONEgLye_81hyIzrY_TdtDIbMZNrfZQ7zGA,5270
|
|
123
123
|
cognite/neat/_graph/transformers/_rdfpath.py,sha256=0ZH7d62kfdCyWGrCyY2oJSnGEPsHQd0sMrZAsTibCCI,4155
|
|
@@ -131,25 +131,25 @@ cognite/neat/_issues/errors/_properties.py,sha256=T_nquQeEQS3DQY--DQ13acxhGX_-gp
|
|
|
131
131
|
cognite/neat/_issues/errors/_resources.py,sha256=YoajFF4Nxq_mhhVSZ7r3J6V-sH8cMMn576dSTsbcQZk,3964
|
|
132
132
|
cognite/neat/_issues/errors/_workflow.py,sha256=m_Hlsvl5A1Oy7P3IROnz-4_do8_orZ1Pr1IHqsMyEys,971
|
|
133
133
|
cognite/neat/_issues/formatters.py,sha256=QCk41VLlpq-R9uaHpINYceZkIUoI9m4pwSq_yWPOmr8,3331
|
|
134
|
-
cognite/neat/_issues/warnings/__init__.py,sha256
|
|
134
|
+
cognite/neat/_issues/warnings/__init__.py,sha256=hVeUminMD3PRnuLe-Ya4p-kJSkUfOWjgHm32tPiwW-Q,2683
|
|
135
135
|
cognite/neat/_issues/warnings/_external.py,sha256=3tE98nLzOx9pb-VMi0MmQskHj-IuEqwjjoqhKMJ-xIM,1325
|
|
136
136
|
cognite/neat/_issues/warnings/_general.py,sha256=9ZSNYBwFQ_XEagxYioUijJdCkdmT3VDQTlTO_JINe_E,617
|
|
137
137
|
cognite/neat/_issues/warnings/_models.py,sha256=i4ZXr1IINKbFiVhUd8-qAt9_cXB8D3W-ng1Ime_lQTA,4376
|
|
138
138
|
cognite/neat/_issues/warnings/_properties.py,sha256=VDc31UshXjLihWFLPFx9-TMyfJuJJKwdoOhkP_kDPFs,2444
|
|
139
|
-
cognite/neat/_issues/warnings/_resources.py,sha256=
|
|
139
|
+
cognite/neat/_issues/warnings/_resources.py,sha256=ahWKooStew8VE4w9k-n7fSxCQF2Pv8TMb2ScM0NkbZ4,3130
|
|
140
140
|
cognite/neat/_issues/warnings/user_modeling.py,sha256=FIOJQ2wgYJtwa6qw3oNPExVXCU-A6BQ-VHPaK-2iL60,3668
|
|
141
141
|
cognite/neat/_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
142
|
cognite/neat/_rules/_constants.py,sha256=lOyf7nybSYOuAE_wKmTMncHYz0Io0_J_YVnYBzjrvZA,5637
|
|
143
143
|
cognite/neat/_rules/_shared.py,sha256=b7mO8mXY4w84XmcY_ArQa4LqnS2A0emS12tbPb4sG7A,1562
|
|
144
144
|
cognite/neat/_rules/analysis/__init__.py,sha256=sMs4n8T87gLlvoss6FWkZ8Y7BPpo9AGxi0m4YxBGwpY,126
|
|
145
|
-
cognite/neat/_rules/analysis/_base.py,sha256=
|
|
146
|
-
cognite/neat/_rules/analysis/_dms.py,sha256=
|
|
147
|
-
cognite/neat/_rules/analysis/_information.py,sha256=
|
|
145
|
+
cognite/neat/_rules/analysis/_base.py,sha256=RXPxgcjhA8xZMZ30TZAYw9vXxd6p2Bn6nWekLEExY_Q,16744
|
|
146
|
+
cognite/neat/_rules/analysis/_dms.py,sha256=k9OrN6kRCcdPr8GCJDRXyF0nNXmBYJQDtoGqw7R87po,2204
|
|
147
|
+
cognite/neat/_rules/analysis/_information.py,sha256=Ex4ZeADmJV35_KjOerlepZILVfZVPcud1zojogKc6_s,10699
|
|
148
148
|
cognite/neat/_rules/catalog/__init__.py,sha256=dzx-DYYJDc861aFiOI5o1FsySD9F1agY8SBsr3nCf4Y,148
|
|
149
149
|
cognite/neat/_rules/catalog/info-rules-imf.xlsx,sha256=7odm5CoAU72-VTZk_z1u7GbycIb-X-8Yy3mtBGLjhE4,55511
|
|
150
150
|
cognite/neat/_rules/exporters/__init__.py,sha256=jCwXAeyZJv7GNJ3hGG-80gb8LAidozsyFMzdNIsGt_Y,1204
|
|
151
|
-
cognite/neat/_rules/exporters/_base.py,sha256
|
|
152
|
-
cognite/neat/_rules/exporters/_rules2dms.py,sha256=
|
|
151
|
+
cognite/neat/_rules/exporters/_base.py,sha256=vadYWb5hVbjiPIhVIzlY6ARisoqhtJa6Ce0ysNHPXQc,1328
|
|
152
|
+
cognite/neat/_rules/exporters/_rules2dms.py,sha256=csaFRdebr8WzqjUcUpjnKkTfbPctk_5D-w-G0p_WtsA,15812
|
|
153
153
|
cognite/neat/_rules/exporters/_rules2excel.py,sha256=puFgIf_dolxv38Lkgzl9lDDREWDPdTApqgYCu9H-hf4,11689
|
|
154
154
|
cognite/neat/_rules/exporters/_rules2instance_template.py,sha256=8HM1SkzcucaEYpQi96ncMnL8STArX9Oe09JBhJJAN4I,5810
|
|
155
155
|
cognite/neat/_rules/exporters/_rules2ontology.py,sha256=ioMi1GUhnbvcfVOPb3Z0a24mIEe74AfxySETWMDS9Lc,21776
|
|
@@ -166,69 +166,69 @@ cognite/neat/_rules/importers/_dtdl2rules/spec.py,sha256=u__f08rAiYG0FIRiWoecBN8
|
|
|
166
166
|
cognite/neat/_rules/importers/_rdf/__init__.py,sha256=F0x60kVLtJ9H8Md8_aMeKMBkhPCMiljyxt2_YmQfnMU,183
|
|
167
167
|
cognite/neat/_rules/importers/_rdf/_base.py,sha256=V-Y5NNP_ang3sXLJNx4AZZZPv1akzZWIRwVLafY3aac,5419
|
|
168
168
|
cognite/neat/_rules/importers/_rdf/_imf2rules.py,sha256=xemIv5G6JXJJ6Jn_1P5UldwEDNsgMIGiDF28DnOTtjU,3597
|
|
169
|
-
cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=
|
|
169
|
+
cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=Zu6GTsG8A48PQs8F7H8iskTj9zu2R-l4NlWejCwSwqo,12518
|
|
170
170
|
cognite/neat/_rules/importers/_rdf/_owl2rules.py,sha256=KhQAM9ai2ckhpB7ohfRi0n8ztRwbPADfNMFed8f-5V8,3267
|
|
171
171
|
cognite/neat/_rules/importers/_rdf/_shared.py,sha256=mxBoqFQfvHeLa4kbDYAd7FEcHe1fv97tcqHd9gmFeKk,5867
|
|
172
172
|
cognite/neat/_rules/importers/_spreadsheet2rules.py,sha256=TI92l_qddRW2JWk3JbmsvKkDYgXU-e_avw4y7epD_rs,10732
|
|
173
173
|
cognite/neat/_rules/importers/_yaml2rules.py,sha256=5DsEMYo6JVHC_mBOaaR3J6on1rXSpk82plCsrOq5_l8,3144
|
|
174
174
|
cognite/neat/_rules/models/__init__.py,sha256=z1LoPY2X-M8Og8bKcjae2JwQB9yW8Y_ASnkL3Tjwqyg,1024
|
|
175
175
|
cognite/neat/_rules/models/_base_input.py,sha256=qJrxobZLqpc28adEUJTKdJ8hDUZ67SVDFkUJnGjcPOc,6647
|
|
176
|
-
cognite/neat/_rules/models/_base_rules.py,sha256=
|
|
176
|
+
cognite/neat/_rules/models/_base_rules.py,sha256=JZkpV3l7gWGmDMluIFtc3qFBOc6edtSTfBMErj_ZzR4,14453
|
|
177
177
|
cognite/neat/_rules/models/_rdfpath.py,sha256=hqUMZCMeI8ESdJltu7FifuUhna5JNN_Heup2aYkV56Y,11882
|
|
178
|
-
cognite/neat/_rules/models/_types.py,sha256=
|
|
178
|
+
cognite/neat/_rules/models/_types.py,sha256=7rh4PVaqI58OTXtoIgZKitmwa5hZlVtk8uX4czlSGFY,5261
|
|
179
179
|
cognite/neat/_rules/models/data_types.py,sha256=LJuWUbStlZM4hUJGExOJIJXmAA4uiA0tvO9zKqLUrQg,9805
|
|
180
180
|
cognite/neat/_rules/models/dms/__init__.py,sha256=r2XGwAjTsAZs-n-oimg40hLUKVpqFGVuAPmfEUCwwRs,695
|
|
181
|
-
cognite/neat/_rules/models/dms/_exporter.py,sha256=
|
|
182
|
-
cognite/neat/_rules/models/dms/_rules.py,sha256=
|
|
183
|
-
cognite/neat/_rules/models/dms/_rules_input.py,sha256=
|
|
184
|
-
cognite/neat/_rules/models/dms/_validation.py,sha256=
|
|
181
|
+
cognite/neat/_rules/models/dms/_exporter.py,sha256=eB5uDX06XYkQkON96eykSk7ZCegb9a5dCxTmTIr252c,28020
|
|
182
|
+
cognite/neat/_rules/models/dms/_rules.py,sha256=4Nstw6iVKil7oz4VkYM6q07-O7Gjrw8oT9ktZnqw5pI,16842
|
|
183
|
+
cognite/neat/_rules/models/dms/_rules_input.py,sha256=mVW-gHrjjlqFuq82qTkxIaMZ7OlzQFxjopxdlwQergY,12949
|
|
184
|
+
cognite/neat/_rules/models/dms/_validation.py,sha256=TAgNg1rur3PRVPcsm4-BXKV9AHX8AtahN0OhRx3PgyM,27262
|
|
185
185
|
cognite/neat/_rules/models/entities/__init__.py,sha256=QD-h79HhjqCsgscNU5kuf1ieRCE94dOfpujLuzYbtHk,1469
|
|
186
186
|
cognite/neat/_rules/models/entities/_constants.py,sha256=ToiLaaF-hGLPfn3AsKIIrfB4ZdTk4cY1RjM9gA1Qjkg,288
|
|
187
187
|
cognite/neat/_rules/models/entities/_loaders.py,sha256=jFllRty5XpS6uLklr9wJkx7Bzm-qwg65um6hnVistvw,2728
|
|
188
|
-
cognite/neat/_rules/models/entities/_multi_value.py,sha256=
|
|
188
|
+
cognite/neat/_rules/models/entities/_multi_value.py,sha256=6j-nlUA392yQP_uB_CFB6_qFReNhi54ZlbFTcOKpbKY,2755
|
|
189
189
|
cognite/neat/_rules/models/entities/_single_value.py,sha256=dVfqIx3_Agi_LddhsqPOyWcAt0s06PNpRxrW-7n-z0Y,18513
|
|
190
190
|
cognite/neat/_rules/models/entities/_types.py,sha256=df9rnXJJKciv2Bp-Ve2q4xdEJt6WWniq12Z0hW2d6sk,1917
|
|
191
191
|
cognite/neat/_rules/models/entities/_wrapped.py,sha256=FxC8HztW_tUUtuArAOwxyFfkdJnSEB4bgZoNmmmfiPk,7137
|
|
192
192
|
cognite/neat/_rules/models/information/__init__.py,sha256=ex9JOyiZYXefFl9oi1VaHhyUOtYjXWytSmwuq4pqKqc,556
|
|
193
|
-
cognite/neat/_rules/models/information/_rules.py,sha256=
|
|
194
|
-
cognite/neat/_rules/models/information/_rules_input.py,sha256=
|
|
195
|
-
cognite/neat/_rules/models/information/_validation.py,sha256=
|
|
193
|
+
cognite/neat/_rules/models/information/_rules.py,sha256=miQpNmKS6bUfP1zI6GrmuUiKHGe13dW-QA96LqG38hY,10062
|
|
194
|
+
cognite/neat/_rules/models/information/_rules_input.py,sha256=PdXTPN0QfO4vxN5M4xzaaDwHEQo53RbY_jIr5TfBszY,5443
|
|
195
|
+
cognite/neat/_rules/models/information/_validation.py,sha256=HbaLShj6uumu-t9I3FUI_iKQfUDiwEkuFENHgWIPfrk,10202
|
|
196
196
|
cognite/neat/_rules/models/mapping/__init__.py,sha256=T68Hf7rhiXa7b03h4RMwarAmkGnB-Bbhc1H07b2PyC4,100
|
|
197
197
|
cognite/neat/_rules/models/mapping/_classic2core.py,sha256=oIU8jKixts-GIO64ArT8VCK_hK-t2zW34gadlvzDwy4,1353
|
|
198
|
-
cognite/neat/_rules/models/mapping/_classic2core.yaml,sha256=
|
|
199
|
-
cognite/neat/_rules/transformers/__init__.py,sha256=
|
|
198
|
+
cognite/neat/_rules/models/mapping/_classic2core.yaml,sha256=8LYjQFBWZ8_ayp3Nq1eBtP9a3D7jZwISmnHfZrq9O_A,9674
|
|
199
|
+
cognite/neat/_rules/transformers/__init__.py,sha256=VQPAInGTBg8tyGU6qLMB_7DiVJenXq_bVeYxdOq9eYc,844
|
|
200
200
|
cognite/neat/_rules/transformers/_base.py,sha256=jmgcSFWOPvrbfme0kUwXi1_3Bvxwif1T1Pin2jqhzlU,3585
|
|
201
|
-
cognite/neat/_rules/transformers/_converters.py,sha256=
|
|
202
|
-
cognite/neat/_rules/transformers/_mapping.py,sha256=
|
|
201
|
+
cognite/neat/_rules/transformers/_converters.py,sha256=1czcTr0cNLyqOuPb7coq2QSZuO0T3Cg1xOr3zZQ1_9Q,44856
|
|
202
|
+
cognite/neat/_rules/transformers/_mapping.py,sha256=gMkLHeMWTvQJZV-YLMQm0pirnd2amVnRq48_WKMcxQo,16579
|
|
203
203
|
cognite/neat/_rules/transformers/_pipelines.py,sha256=2y786LkNMedmxoozUyvtd-2bfqf6wkX2H8On-m2Ucsw,2618
|
|
204
204
|
cognite/neat/_rules/transformers/_verification.py,sha256=M4-Cr3vTm3PZyHSjW-odbOqbY5g0hiRjERDjvLgYbxU,3907
|
|
205
205
|
cognite/neat/_session/__init__.py,sha256=fxQ5URVlUnmEGYyB8Baw7IDq-uYacqkigbc4b-Pr9Fw,58
|
|
206
|
-
cognite/neat/_session/_base.py,sha256=
|
|
206
|
+
cognite/neat/_session/_base.py,sha256=FjQBIk1Td2RWu58Ktd88k6ySzmNr9MVLt0hxgA8Eahg,10502
|
|
207
207
|
cognite/neat/_session/_collector.py,sha256=zS5JxLIYnAWV-dBzF6WgUfo662iYSzEyDhtnMv-Zibs,4002
|
|
208
208
|
cognite/neat/_session/_drop.py,sha256=XlEaKb_HpqI5EQuUuUFjcf3Qx6BfcBBWdqqGdwkGhmE,1137
|
|
209
209
|
cognite/neat/_session/_inspect.py,sha256=s3R6vz8HbqZSdknyXTSkmA3JvvInlQF5yNKECTA-I1w,7264
|
|
210
|
-
cognite/neat/_session/_mapping.py,sha256=
|
|
211
|
-
cognite/neat/_session/_prepare.py,sha256=
|
|
212
|
-
cognite/neat/_session/_read.py,sha256=
|
|
213
|
-
cognite/neat/_session/_set.py,sha256=
|
|
210
|
+
cognite/neat/_session/_mapping.py,sha256=MZ_xRhapc2mVwM-W3tda2zZGaPncj_ZqnzuasvY05po,6109
|
|
211
|
+
cognite/neat/_session/_prepare.py,sha256=_jU0TJWLcg727wKh8NK3a-5duVnRkGJrnkNxLO_D83Q,21883
|
|
212
|
+
cognite/neat/_session/_read.py,sha256=4G34X_7hNs5V0gCLHPR1ktva6-fyGmwVc1Qu7T5yQdA,15102
|
|
213
|
+
cognite/neat/_session/_set.py,sha256=NY0Vz8xD_a-UA8qWE1GFxHdmBl1BkT1KHQehQVKUorI,1914
|
|
214
214
|
cognite/neat/_session/_show.py,sha256=_ev_Z41rkW4nlvhLf69PmttggKksnkCchOow7CmICyU,14124
|
|
215
215
|
cognite/neat/_session/_state.py,sha256=rqKHkikagO1pf_fKpY-LZI1X5R_v6AyYpV72_3eSduM,5783
|
|
216
|
-
cognite/neat/_session/_to.py,sha256=
|
|
217
|
-
cognite/neat/_session/_wizard.py,sha256=
|
|
216
|
+
cognite/neat/_session/_to.py,sha256=_NJn8tGTEcAoWpuCI6stquKNBuD8CqHqXLpSKkeT_1g,7365
|
|
217
|
+
cognite/neat/_session/_wizard.py,sha256=O8d0FA87RIoiTOD2KLyTVsxwA2-ewAG2By4JfxXSL84,1474
|
|
218
218
|
cognite/neat/_session/engine/__init__.py,sha256=aeI5pzljU5n1B-SVu3LwjYVsN1tSVhnJj-4ddflEo4U,120
|
|
219
219
|
cognite/neat/_session/engine/_import.py,sha256=1QxA2_EK613lXYAHKQbZyw2yjo5P9XuiX4Z6_6-WMNQ,169
|
|
220
|
-
cognite/neat/_session/engine/_interface.py,sha256=
|
|
220
|
+
cognite/neat/_session/engine/_interface.py,sha256=ItJ1VMrPt-pKKvpSpglD9n9yFC6ehF9xV2DUVCyfQB0,533
|
|
221
221
|
cognite/neat/_session/engine/_load.py,sha256=HAzrAiR3FQz881ZMbaK6EIvMNRxHUK8VbSoD2Obd-4g,5064
|
|
222
222
|
cognite/neat/_session/exceptions.py,sha256=dvhwF7d8AADxqEI13nZreLCPBPN_7A3KiAqlWjkpuqc,2303
|
|
223
223
|
cognite/neat/_shared.py,sha256=JXebp3LREqBq9TPNXb7QCHwF7_nbWo622WAzllxSaaU,1671
|
|
224
224
|
cognite/neat/_store/__init__.py,sha256=G-VG_YwfRt1kuPao07PDJyZ3w_0-eguzLUM13n-Z_RA,64
|
|
225
|
-
cognite/neat/_store/_base.py,sha256=
|
|
225
|
+
cognite/neat/_store/_base.py,sha256=X77CkrCLEg9g_qpcqTIIid-1KZZ7NCU1wbrQqVR6Prc,16265
|
|
226
226
|
cognite/neat/_store/_provenance.py,sha256=BiVOuwl65qWZBaBlPYbVv0Dy_Ibg7U3tLpXt8H7KRuw,8722
|
|
227
227
|
cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
228
|
cognite/neat/_utils/auth.py,sha256=UbFNq4BIqxc1459xJtI1FZz91K5XEMkfY5cfpBHyUHU,13301
|
|
229
229
|
cognite/neat/_utils/auxiliary.py,sha256=WFOycFgoYipvDmtGvn6ZNH3H8iNZmHamrfe2kXRb8lM,6667
|
|
230
|
-
cognite/neat/_utils/collection_.py,sha256=
|
|
231
|
-
cognite/neat/_utils/rdf_.py,sha256=
|
|
230
|
+
cognite/neat/_utils/collection_.py,sha256=Q_LN1qypr0SeAV3dAR5KLD1szHNohSdYxyA8hr3n4T8,1433
|
|
231
|
+
cognite/neat/_utils/rdf_.py,sha256=_nmZqo6_Ef7Aep0kXR_uoiRxGQR2u5lMK4g5mxWneeY,8586
|
|
232
232
|
cognite/neat/_utils/reader/__init__.py,sha256=KOdEuGd9n9tyqZY7HCTnBKAXk2PUn4n_l7O3ZguSp-w,112
|
|
233
233
|
cognite/neat/_utils/reader/_base.py,sha256=PECrAlJqKDlyFzAlBBLfKjyOEyJSgN0sUfjbK-2qWf4,4537
|
|
234
234
|
cognite/neat/_utils/spreadsheet.py,sha256=LI0c7dlW0zXHkHw0NvB-gg6Df6cDcE3FbiaHBYLXdzQ,2714
|
|
@@ -236,7 +236,7 @@ cognite/neat/_utils/text.py,sha256=PvTEsEjaTu8SE8yYaKUrce4msboMj933dK7-0Eey_rE,3
|
|
|
236
236
|
cognite/neat/_utils/time_.py,sha256=O30LUiDH9TdOYz8_a9pFqTtJdg8vEjC3qHCk8xZblG8,345
|
|
237
237
|
cognite/neat/_utils/upload.py,sha256=iWKmsQgw4EHLv-11NjYu7zAj5LtqTAfNa87a1kWeuaU,5727
|
|
238
238
|
cognite/neat/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
|
|
239
|
-
cognite/neat/_version.py,sha256=
|
|
239
|
+
cognite/neat/_version.py,sha256=nA_YK6_YjwJqujTlS_0t_IcLFjNgqEIsI8sSheyAdKI,46
|
|
240
240
|
cognite/neat/_workflows/__init__.py,sha256=S0fZq7kvoqDKodHu1UIPsqcpdvXoefUWRPt1lqeQkQs,420
|
|
241
241
|
cognite/neat/_workflows/base.py,sha256=O1pcmfbme2gIVF2eOGrKZSUDmhZc8L9rI8UfvLN2YAM,26839
|
|
242
242
|
cognite/neat/_workflows/cdf_store.py,sha256=3pebnATPo6In4-1srpa3wzstynTOi3T6hwFX5uaie4c,18050
|
|
@@ -254,7 +254,7 @@ cognite/neat/_workflows/steps/lib/current/__init__.py,sha256=c22IznGdCSNCpXCi_yo
|
|
|
254
254
|
cognite/neat/_workflows/steps/lib/current/graph_extractor.py,sha256=iQsEs3a8pYISFqlP7lTMnPxz8Zic5Ep7CwB38jkRaJY,3711
|
|
255
255
|
cognite/neat/_workflows/steps/lib/current/graph_loader.py,sha256=EItu0wh-b-AFyn7iRhdThLjJ2NvHYBv3hY3x2w5sCqg,1693
|
|
256
256
|
cognite/neat/_workflows/steps/lib/current/graph_store.py,sha256=Fbd3Fb4K2QML_if46SLldikvBJUPJ2VUAG2Bzqcq-Qc,1586
|
|
257
|
-
cognite/neat/_workflows/steps/lib/current/rules_exporter.py,sha256=
|
|
257
|
+
cognite/neat/_workflows/steps/lib/current/rules_exporter.py,sha256=kiF7bSjmdA0ZfmtPgKt_qYGwX013cX51hP0yj3q4M-c,21934
|
|
258
258
|
cognite/neat/_workflows/steps/lib/current/rules_importer.py,sha256=pcFJYguOcwF-9p_odTkIJrgjuNjQmoYzn5MHP-gsL_Y,17280
|
|
259
259
|
cognite/neat/_workflows/steps/lib/current/rules_validator.py,sha256=yTQnjWuDQpL8TjhqBnHVkqS7TduZ5vVfzmzHiXy9gPA,4665
|
|
260
260
|
cognite/neat/_workflows/steps/lib/io/__init__.py,sha256=k7IPbIq3ey19oRc5sA_15F99-O6dxzqbm1LihGRRo5A,32
|
|
@@ -265,8 +265,8 @@ cognite/neat/_workflows/tasks.py,sha256=dr2xuIb8P5e5e9p_fjzRlvDbKsre2xGYrkc3wnRx
|
|
|
265
265
|
cognite/neat/_workflows/triggers.py,sha256=u69xOsaTtM8_WD6ZeIIBB-XKwvlZmPHAsZQh_TnyHcM,7073
|
|
266
266
|
cognite/neat/_workflows/utils.py,sha256=gKdy3RLG7ctRhbCRwaDIWpL9Mi98zm56-d4jfHDqP1E,453
|
|
267
267
|
cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
|
-
cognite_neat-0.
|
|
269
|
-
cognite_neat-0.
|
|
270
|
-
cognite_neat-0.
|
|
271
|
-
cognite_neat-0.
|
|
272
|
-
cognite_neat-0.
|
|
268
|
+
cognite_neat-0.100.1.dist-info/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
|
|
269
|
+
cognite_neat-0.100.1.dist-info/METADATA,sha256=_uca35iR6CWYhSThIO4TX9xD6alAHLmNcjr9Jwda7UE,9699
|
|
270
|
+
cognite_neat-0.100.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
271
|
+
cognite_neat-0.100.1.dist-info/entry_points.txt,sha256=SsQlnl8SNMSSjE3acBI835JYFtsIinLSbVmHmMEXv6E,51
|
|
272
|
+
cognite_neat-0.100.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|