cognite-neat 0.92.3__py3-none-any.whl → 0.94.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/__init__.py +3 -2
- cognite/neat/{app → _app}/api/configuration.py +9 -7
- cognite/neat/_app/api/context_manager/__init__.py +3 -0
- cognite/neat/{app → _app}/api/context_manager/manager.py +1 -1
- cognite/neat/{app → _app}/api/explorer.py +5 -5
- cognite/neat/{app → _app}/api/routers/configuration.py +2 -2
- cognite/neat/{app → _app}/api/routers/crud.py +4 -4
- cognite/neat/{app → _app}/api/routers/workflows.py +7 -7
- cognite/neat/{app → _app}/main.py +1 -1
- cognite/neat/_app/ui/neat-app/package-lock.json +18306 -0
- cognite/neat/_app/ui/neat-app/package.json +62 -0
- cognite/neat/_app/ui/neat-app/public/favicon.ico +0 -0
- cognite/neat/_app/ui/neat-app/public/img/architect-icon.svg +116 -0
- cognite/neat/_app/ui/neat-app/public/img/developer-icon.svg +112 -0
- cognite/neat/_app/ui/neat-app/public/img/sme-icon.svg +34 -0
- cognite/neat/_app/ui/neat-app/public/index.html +43 -0
- cognite/neat/_app/ui/neat-app/public/logo192.png +0 -0
- cognite/neat/_app/ui/neat-app/public/manifest.json +25 -0
- cognite/neat/_app/ui/neat-app/public/robots.txt +3 -0
- cognite/neat/_app/ui/neat-app/src/App.css +38 -0
- cognite/neat/_app/ui/neat-app/src/App.js +17 -0
- cognite/neat/_app/ui/neat-app/src/App.test.js +8 -0
- cognite/neat/_app/ui/neat-app/src/MainContainer.tsx +70 -0
- cognite/neat/_app/ui/neat-app/src/components/JsonViewer.tsx +43 -0
- cognite/neat/_app/ui/neat-app/src/components/LocalUploader.tsx +124 -0
- cognite/neat/_app/ui/neat-app/src/components/OverviewComponentEditorDialog.tsx +63 -0
- cognite/neat/_app/ui/neat-app/src/components/StepEditorDialog.tsx +511 -0
- cognite/neat/_app/ui/neat-app/src/components/TabPanel.tsx +36 -0
- cognite/neat/_app/ui/neat-app/src/components/Utils.tsx +56 -0
- cognite/neat/_app/ui/neat-app/src/components/WorkflowDeleteDialog.tsx +60 -0
- cognite/neat/_app/ui/neat-app/src/components/WorkflowExecutionReport.tsx +112 -0
- cognite/neat/_app/ui/neat-app/src/components/WorkflowImportExportDialog.tsx +67 -0
- cognite/neat/_app/ui/neat-app/src/components/WorkflowMetadataDialog.tsx +79 -0
- cognite/neat/_app/ui/neat-app/src/index.css +13 -0
- cognite/neat/_app/ui/neat-app/src/index.js +13 -0
- cognite/neat/_app/ui/neat-app/src/logo.svg +1 -0
- cognite/neat/_app/ui/neat-app/src/reportWebVitals.js +13 -0
- cognite/neat/_app/ui/neat-app/src/setupTests.js +5 -0
- cognite/neat/_app/ui/neat-app/src/types/WorkflowTypes.ts +388 -0
- cognite/neat/_app/ui/neat-app/src/views/AboutView.tsx +61 -0
- cognite/neat/_app/ui/neat-app/src/views/ConfigView.tsx +184 -0
- cognite/neat/_app/ui/neat-app/src/views/GlobalConfigView.tsx +180 -0
- cognite/neat/_app/ui/neat-app/src/views/WorkflowView.tsx +570 -0
- cognite/neat/_app/ui/neat-app/tsconfig.json +27 -0
- cognite/neat/{config.py → _config.py} +3 -3
- cognite/neat/{constants.py → _constants.py} +13 -5
- cognite/neat/_graph/_shared.py +34 -0
- cognite/neat/{graph → _graph}/_tracking/base.py +1 -1
- cognite/neat/{graph → _graph}/_tracking/log.py +1 -1
- cognite/neat/{graph → _graph}/extractors/__init__.py +5 -0
- cognite/neat/{graph → _graph}/extractors/_base.py +2 -2
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_assets.py +1 -1
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_base.py +4 -4
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_classic.py +5 -5
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_data_sets.py +1 -1
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_events.py +1 -1
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_files.py +1 -1
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_labels.py +1 -1
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_relationships.py +2 -2
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_sequences.py +1 -1
- cognite/neat/{graph → _graph}/extractors/_classic_cdf/_timeseries.py +1 -1
- cognite/neat/{graph → _graph}/extractors/_dexpi.py +5 -5
- cognite/neat/{graph → _graph}/extractors/_dms.py +3 -3
- cognite/neat/_graph/extractors/_iodd.py +402 -0
- cognite/neat/{graph → _graph}/extractors/_mock_graph_generator.py +9 -8
- cognite/neat/_graph/extractors/_rdf_file.py +49 -0
- cognite/neat/{graph → _graph}/loaders/_base.py +5 -5
- cognite/neat/{graph → _graph}/loaders/_rdf2asset.py +11 -10
- cognite/neat/{graph → _graph}/loaders/_rdf2dms.py +10 -10
- cognite/neat/{graph → _graph}/queries/_base.py +91 -19
- cognite/neat/{graph → _graph}/queries/_construct.py +5 -5
- cognite/neat/{graph → _graph}/queries/_shared.py +3 -3
- cognite/neat/{graph → _graph}/transformers/__init__.py +6 -0
- cognite/neat/{graph → _graph}/transformers/_classic_cdf.py +135 -3
- cognite/neat/_graph/transformers/_iodd.py +25 -0
- cognite/neat/_graph/transformers/_prune_graph.py +126 -0
- cognite/neat/{graph → _graph}/transformers/_rdfpath.py +3 -3
- cognite/neat/_graph/transformers/_value_type.py +66 -0
- cognite/neat/{issues → _issues}/_base.py +32 -17
- cognite/neat/{issues → _issues}/errors/__init__.py +1 -1
- cognite/neat/{issues → _issues}/errors/_external.py +8 -8
- cognite/neat/{issues → _issues}/errors/_general.py +5 -5
- cognite/neat/{issues → _issues}/errors/_properties.py +7 -7
- cognite/neat/{issues → _issues}/errors/_resources.py +11 -11
- cognite/neat/{issues → _issues}/errors/_workflow.py +5 -5
- cognite/neat/{issues → _issues}/warnings/__init__.py +1 -1
- cognite/neat/{issues → _issues}/warnings/_external.py +5 -5
- cognite/neat/{issues → _issues}/warnings/_general.py +4 -4
- cognite/neat/{issues → _issues}/warnings/_models.py +10 -10
- cognite/neat/{issues → _issues}/warnings/_properties.py +6 -6
- cognite/neat/{issues → _issues}/warnings/_resources.py +5 -5
- cognite/neat/{issues → _issues}/warnings/user_modeling.py +9 -9
- cognite/neat/_rules/_constants.py +190 -0
- cognite/neat/{rules → _rules}/_shared.py +5 -5
- cognite/neat/_rules/analysis/__init__.py +5 -0
- cognite/neat/{rules → _rules}/analysis/_asset.py +5 -5
- cognite/neat/{rules → _rules}/analysis/_base.py +5 -5
- cognite/neat/_rules/analysis/_dms.py +43 -0
- cognite/neat/{rules → _rules}/analysis/_information.py +12 -6
- cognite/neat/_rules/catalog/__init__.py +6 -0
- cognite/neat/_rules/catalog/info-rules-imf.xlsx +0 -0
- cognite/neat/{rules → _rules}/exporters/__init__.py +2 -0
- cognite/neat/{rules → _rules}/exporters/_base.py +3 -3
- cognite/neat/{rules → _rules}/exporters/_rules2dms.py +5 -5
- cognite/neat/{rules → _rules}/exporters/_rules2excel.py +12 -8
- cognite/neat/_rules/exporters/_rules2instance_template.py +152 -0
- cognite/neat/{rules → _rules}/exporters/_rules2ontology.py +10 -9
- cognite/neat/{rules → _rules}/exporters/_rules2yaml.py +1 -3
- cognite/neat/{rules → _rules}/exporters/_validation.py +2 -2
- cognite/neat/{rules → _rules}/importers/_base.py +3 -3
- cognite/neat/{rules → _rules}/importers/_dms2rules.py +9 -9
- cognite/neat/{rules → _rules}/importers/_dtdl2rules/dtdl_converter.py +7 -7
- cognite/neat/{rules → _rules}/importers/_dtdl2rules/dtdl_importer.py +9 -9
- cognite/neat/{rules → _rules}/importers/_dtdl2rules/spec.py +1 -1
- cognite/neat/_rules/importers/_rdf/_base.py +144 -0
- cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/_imf2classes.py +1 -1
- cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/_imf2metadata.py +4 -4
- cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/_imf2properties.py +2 -1
- cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/_imf2rules.py +8 -39
- cognite/neat/{rules → _rules}/importers/_rdf/_inference2rules.py +33 -106
- cognite/neat/{rules → _rules}/importers/_rdf/_owl2rules/_owl2classes.py +1 -1
- cognite/neat/{rules → _rules}/importers/_rdf/_owl2rules/_owl2metadata.py +5 -5
- cognite/neat/{rules → _rules}/importers/_rdf/_owl2rules/_owl2properties.py +1 -1
- cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2rules.py +39 -0
- cognite/neat/{rules → _rules}/importers/_rdf/_shared.py +4 -4
- cognite/neat/{rules → _rules}/importers/_spreadsheet2rules.py +7 -7
- cognite/neat/{rules → _rules}/importers/_yaml2rules.py +5 -5
- cognite/neat/{rules → _rules}/models/__init__.py +5 -5
- cognite/neat/{rules → _rules}/models/_base_input.py +15 -6
- cognite/neat/{rules → _rules}/models/_base_rules.py +14 -2
- cognite/neat/{rules → _rules}/models/_rdfpath.py +1 -1
- cognite/neat/_rules/models/_types.py +151 -0
- cognite/neat/{rules → _rules}/models/asset/_rules.py +4 -4
- cognite/neat/{rules → _rules}/models/asset/_rules_input.py +4 -4
- cognite/neat/{rules → _rules}/models/asset/_validation.py +7 -7
- cognite/neat/{rules → _rules}/models/data_types.py +15 -12
- cognite/neat/{rules → _rules}/models/dms/_exporter.py +60 -12
- cognite/neat/{rules → _rules}/models/dms/_rules.py +26 -23
- cognite/neat/{rules → _rules}/models/dms/_rules_input.py +4 -4
- cognite/neat/{rules → _rules}/models/dms/_schema.py +15 -14
- cognite/neat/{rules → _rules}/models/dms/_validation.py +8 -8
- cognite/neat/{rules → _rules}/models/domain.py +6 -6
- cognite/neat/{rules → _rules}/models/entities/__init__.py +1 -2
- cognite/neat/_rules/models/entities/_constants.py +15 -0
- cognite/neat/{rules → _rules}/models/entities/_loaders.py +2 -2
- cognite/neat/{rules → _rules}/models/entities/_multi_value.py +15 -2
- cognite/neat/{rules → _rules}/models/entities/_single_value.py +7 -4
- cognite/neat/{rules → _rules}/models/information/_rules.py +34 -22
- cognite/neat/{rules → _rules}/models/information/_rules_input.py +3 -3
- cognite/neat/{rules → _rules}/models/information/_validation.py +6 -5
- cognite/neat/_rules/models/mapping/__init__.py +4 -0
- cognite/neat/_rules/models/mapping/_base.py +131 -0
- cognite/neat/_rules/models/mapping/_classic2core.py +150 -0
- cognite/neat/{rules → _rules}/transformers/__init__.py +15 -2
- cognite/neat/{rules → _rules}/transformers/_base.py +3 -3
- cognite/neat/{rules → _rules}/transformers/_converters.py +289 -20
- cognite/neat/{rules/transformers/_map_onto.py → _rules/transformers/_mapping.py} +46 -4
- cognite/neat/{rules → _rules}/transformers/_pipelines.py +4 -4
- cognite/neat/{rules → _rules}/transformers/_verification.py +10 -4
- cognite/neat/_session/__init__.py +3 -0
- cognite/neat/_session/_base.py +86 -0
- cognite/neat/_session/_prepare.py +61 -0
- cognite/neat/_session/_read.py +118 -0
- cognite/neat/_session/_show.py +274 -0
- cognite/neat/_session/_state.py +69 -0
- cognite/neat/_session/_to.py +70 -0
- cognite/neat/_session/_wizard.py +39 -0
- cognite/neat/_session/exceptions.py +42 -0
- cognite/neat/{store → _store}/_base.py +62 -31
- cognite/neat/{store → _store}/_provenance.py +11 -1
- cognite/neat/{utils → _utils}/auth.py +14 -3
- cognite/neat/{utils → _utils}/auxiliary.py +1 -1
- cognite/neat/{utils → _utils}/cdf/loaders/_data_modeling.py +8 -2
- cognite/neat/{utils → _utils}/cdf/loaders/_ingestion.py +1 -1
- cognite/neat/{utils → _utils}/upload.py +1 -1
- cognite/neat/_version.py +1 -1
- cognite/neat/_workflows/__init__.py +17 -0
- cognite/neat/{workflows → _workflows}/base.py +10 -10
- cognite/neat/{workflows → _workflows}/cdf_store.py +3 -3
- cognite/neat/{workflows → _workflows}/examples/Export_DMS/workflow.yaml +89 -89
- cognite/neat/{workflows → _workflows}/manager.py +6 -6
- cognite/neat/{workflows → _workflows}/steps/data_contracts.py +3 -3
- cognite/neat/{workflows → _workflows}/steps/lib/current/graph_extractor.py +8 -31
- cognite/neat/{workflows → _workflows}/steps/lib/current/graph_loader.py +4 -4
- cognite/neat/{workflows → _workflows}/steps/lib/current/graph_store.py +4 -4
- cognite/neat/{workflows → _workflows}/steps/lib/current/rules_exporter.py +8 -8
- cognite/neat/{workflows → _workflows}/steps/lib/current/rules_importer.py +13 -13
- cognite/neat/{workflows → _workflows}/steps/lib/current/rules_validator.py +8 -8
- cognite/neat/{workflows → _workflows}/steps/lib/io/io_steps.py +3 -3
- cognite/neat/{workflows → _workflows}/steps/step_model.py +3 -3
- cognite/neat/{workflows → _workflows}/steps_registry.py +9 -9
- cognite/neat/{workflows → _workflows}/tasks.py +1 -1
- cognite/neat/{workflows → _workflows}/triggers.py +2 -2
- {cognite_neat-0.92.3.dist-info → cognite_neat-0.94.0.dist-info}/METADATA +6 -2
- cognite_neat-0.94.0.dist-info/RECORD +276 -0
- {cognite_neat-0.92.3.dist-info → cognite_neat-0.94.0.dist-info}/WHEEL +1 -1
- cognite_neat-0.94.0.dist-info/entry_points.txt +3 -0
- cognite/neat/app/api/context_manager/__init__.py +0 -3
- cognite/neat/graph/_shared.py +0 -5
- cognite/neat/graph/extractors/_iodd.py +0 -160
- cognite/neat/graph/extractors/_rdf_file.py +0 -26
- cognite/neat/rules/analysis/__init__.py +0 -6
- cognite/neat/rules/examples/__init__.py +0 -10
- cognite/neat/rules/examples/info-rules-imf.xlsx +0 -0
- cognite/neat/rules/examples/wind-energy.owl +0 -1511
- cognite/neat/rules/importers/_rdf/_owl2rules/_owl2rules.py +0 -65
- cognite/neat/rules/models/_types.py +0 -96
- cognite/neat/rules/models/entities/_constants.py +0 -73
- cognite/neat/utils/regex_patterns.py +0 -58
- cognite/neat/workflows/__init__.py +0 -12
- cognite_neat-0.92.3.dist-info/RECORD +0 -224
- cognite_neat-0.92.3.dist-info/entry_points.txt +0 -3
- /cognite/neat/{app → _app}/api/__init__.py +0 -0
- /cognite/neat/{app → _app}/api/asgi/metrics.py +0 -0
- /cognite/neat/{app → _app}/api/data_classes/__init__.py +0 -0
- /cognite/neat/{app → _app}/api/data_classes/rest.py +0 -0
- /cognite/neat/{app → _app}/api/routers/metrics.py +0 -0
- /cognite/neat/{app → _app}/api/utils/__init__.py +0 -0
- /cognite/neat/{app → _app}/api/utils/data_mapping.py +0 -0
- /cognite/neat/{app → _app}/api/utils/logging.py +0 -0
- /cognite/neat/{app → _app}/api/utils/query_templates.py +0 -0
- /cognite/neat/{app → _app}/monitoring/__init__.py +0 -0
- /cognite/neat/{app → _app}/monitoring/metrics.py +0 -0
- /cognite/neat/{app → _app}/ui/index.html +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/.gitignore +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/README.md +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/asset-manifest.json +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/favicon.ico +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/img/architect-icon.svg +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/img/developer-icon.svg +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/img/sme-icon.svg +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/index.html +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/logo192.png +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/manifest.json +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/robots.txt +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/static/css/main.72e3d92e.css +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/static/css/main.72e3d92e.css.map +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/static/js/main.5a52cf09.js +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/static/js/main.5a52cf09.js.LICENSE.txt +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/static/js/main.5a52cf09.js.map +0 -0
- /cognite/neat/{app → _app}/ui/neat-app/build/static/media/logo.8093b84df9ed36a174c629d6fe0b730d.svg +0 -0
- /cognite/neat/{graph → _graph}/__init__.py +0 -0
- /cognite/neat/{graph → _graph}/_tracking/__init__.py +0 -0
- /cognite/neat/{graph → _graph}/examples/Knowledge-Graph-Nordic44-dirty.xml +0 -0
- /cognite/neat/{graph → _graph}/examples/Knowledge-Graph-Nordic44.xml +0 -0
- /cognite/neat/{graph → _graph}/examples/__init__.py +0 -0
- /cognite/neat/{graph → _graph}/examples/skos-capturing-sheet-wind-topics.xlsx +0 -0
- /cognite/neat/{graph → _graph}/extractors/_classic_cdf/__init__.py +0 -0
- /cognite/neat/{graph → _graph}/loaders/__init__.py +0 -0
- /cognite/neat/{graph → _graph}/models.py +0 -0
- /cognite/neat/{graph → _graph}/queries/__init__.py +0 -0
- /cognite/neat/{graph → _graph}/transformers/_base.py +0 -0
- /cognite/neat/{issues → _issues}/__init__.py +0 -0
- /cognite/neat/{issues → _issues}/formatters.py +0 -0
- /cognite/neat/{rules → _rules}/__init__.py +0 -0
- /cognite/neat/{rules → _rules}/importers/__init__.py +0 -0
- /cognite/neat/{rules → _rules}/importers/_dtdl2rules/__init__.py +0 -0
- /cognite/neat/{rules → _rules}/importers/_dtdl2rules/_unit_lookup.py +0 -0
- /cognite/neat/{rules → _rules}/importers/_rdf/__init__.py +0 -0
- /cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/__init__.py +0 -0
- /cognite/neat/{rules → _rules}/importers/_rdf/_owl2rules/__init__.py +0 -0
- /cognite/neat/{rules → _rules}/models/asset/__init__.py +0 -0
- /cognite/neat/{rules → _rules}/models/dms/__init__.py +0 -0
- /cognite/neat/{rules → _rules}/models/entities/_types.py +0 -0
- /cognite/neat/{rules → _rules}/models/entities/_wrapped.py +0 -0
- /cognite/neat/{rules → _rules}/models/information/__init__.py +0 -0
- /cognite/neat/{store → _store}/__init__.py +0 -0
- /cognite/neat/{utils → _utils}/__init__.py +0 -0
- /cognite/neat/{utils → _utils}/cdf/__init__.py +0 -0
- /cognite/neat/{utils → _utils}/cdf/data_classes.py +0 -0
- /cognite/neat/{utils → _utils}/cdf/loaders/__init__.py +0 -0
- /cognite/neat/{utils → _utils}/cdf/loaders/_base.py +0 -0
- /cognite/neat/{utils → _utils}/collection_.py +0 -0
- /cognite/neat/{utils → _utils}/rdf_.py +0 -0
- /cognite/neat/{utils → _utils}/spreadsheet.py +0 -0
- /cognite/neat/{utils → _utils}/text.py +0 -0
- /cognite/neat/{utils → _utils}/time_.py +0 -0
- /cognite/neat/{utils → _utils}/xml_.py +0 -0
- /cognite/neat/{workflows → _workflows}/examples/Export_Semantic_Data_Model/workflow.yaml +0 -0
- /cognite/neat/{workflows → _workflows}/examples/Import_DMS/workflow.yaml +0 -0
- /cognite/neat/{workflows → _workflows}/examples/Validate_Rules/workflow.yaml +0 -0
- /cognite/neat/{workflows → _workflows}/examples/Validate_Solution_Model/workflow.yaml +0 -0
- /cognite/neat/{workflows → _workflows}/model.py +0 -0
- /cognite/neat/{workflows → _workflows}/steps/__init__.py +0 -0
- /cognite/neat/{workflows → _workflows}/steps/lib/__init__.py +0 -0
- /cognite/neat/{workflows → _workflows}/steps/lib/current/__init__.py +0 -0
- /cognite/neat/{workflows → _workflows}/steps/lib/io/__init__.py +0 -0
- /cognite/neat/{workflows → _workflows}/utils.py +0 -0
- {cognite_neat-0.92.3.dist-info → cognite_neat-0.94.0.dist-info}/LICENSE +0 -0
|
@@ -5,16 +5,16 @@ from typing import ClassVar
|
|
|
5
5
|
from cognite.client import CogniteClient
|
|
6
6
|
from cognite.client.data_classes.data_modeling import DataModelId
|
|
7
7
|
|
|
8
|
-
from cognite.neat.
|
|
9
|
-
from cognite.neat.
|
|
10
|
-
from cognite.neat.
|
|
11
|
-
from cognite.neat.
|
|
12
|
-
from cognite.neat.
|
|
13
|
-
from cognite.neat.
|
|
14
|
-
from cognite.neat.
|
|
15
|
-
from cognite.neat.
|
|
16
|
-
from cognite.neat.
|
|
17
|
-
from cognite.neat.
|
|
8
|
+
from cognite.neat._issues.errors import WorkflowStepNotInitializedError
|
|
9
|
+
from cognite.neat._issues.formatters import FORMATTER_BY_NAME
|
|
10
|
+
from cognite.neat._rules import importers
|
|
11
|
+
from cognite.neat._rules._shared import InputRules
|
|
12
|
+
from cognite.neat._rules.models import RoleTypes
|
|
13
|
+
from cognite.neat._rules.models.entities import DataModelEntity, DMSUnknownEntity
|
|
14
|
+
from cognite.neat._rules.transformers import ImporterPipeline
|
|
15
|
+
from cognite.neat._workflows.model import FlowMessage, StepExecutionStatus
|
|
16
|
+
from cognite.neat._workflows.steps.data_contracts import MultiRuleData
|
|
17
|
+
from cognite.neat._workflows.steps.step_model import Configurable, Step
|
|
18
18
|
|
|
19
19
|
CATEGORY = __name__.split(".")[-1].replace("_", " ").title()
|
|
20
20
|
|
|
@@ -145,7 +145,7 @@ class OntologyToRules(Step):
|
|
|
145
145
|
if role != "infer" and role is not None:
|
|
146
146
|
role_enum = RoleTypes[role]
|
|
147
147
|
|
|
148
|
-
ontology_importer = importers.OWLImporter(filepath=rules_file_path)
|
|
148
|
+
ontology_importer = importers.OWLImporter.from_file(filepath=rules_file_path)
|
|
149
149
|
result = ImporterPipeline.try_verify(ontology_importer, role_enum)
|
|
150
150
|
|
|
151
151
|
if result.rules is None:
|
|
@@ -216,7 +216,7 @@ class IMFToRules(Step):
|
|
|
216
216
|
if role != "infer" and role is not None:
|
|
217
217
|
role_enum = RoleTypes[role]
|
|
218
218
|
|
|
219
|
-
ontology_importer = importers.IMFImporter(
|
|
219
|
+
ontology_importer = importers.IMFImporter.from_file(rules_file_path)
|
|
220
220
|
result = ImporterPipeline.try_verify(ontology_importer, role_enum)
|
|
221
221
|
|
|
222
222
|
if result.rules is None:
|
|
@@ -387,7 +387,7 @@ class RulesInferenceFromRdfFile(Step):
|
|
|
387
387
|
if role != "infer" and role is not None:
|
|
388
388
|
role_enum = RoleTypes[role]
|
|
389
389
|
|
|
390
|
-
inference_importer = importers.InferenceImporter.
|
|
390
|
+
inference_importer = importers.InferenceImporter.from_file(
|
|
391
391
|
rdf_file_path, max_number_of_instance=max_number_of_instance
|
|
392
392
|
)
|
|
393
393
|
result = ImporterPipeline.try_verify(inference_importer, role_enum)
|
|
@@ -5,14 +5,14 @@ from typing import ClassVar
|
|
|
5
5
|
|
|
6
6
|
from cognite.client import CogniteClient
|
|
7
7
|
|
|
8
|
-
from cognite.neat.
|
|
9
|
-
from cognite.neat.
|
|
10
|
-
from cognite.neat.
|
|
11
|
-
from cognite.neat.
|
|
12
|
-
from cognite.neat.
|
|
13
|
-
from cognite.neat.
|
|
14
|
-
from cognite.neat.
|
|
15
|
-
from cognite.neat.
|
|
8
|
+
from cognite.neat._issues import NeatIssueList
|
|
9
|
+
from cognite.neat._issues.errors import ResourceNotFoundError, WorkflowStepNotInitializedError
|
|
10
|
+
from cognite.neat._issues.formatters import FORMATTER_BY_NAME
|
|
11
|
+
from cognite.neat._rules.models import DMSRules, SchemaCompleteness
|
|
12
|
+
from cognite.neat._utils.cdf.loaders import ViewLoader
|
|
13
|
+
from cognite.neat._workflows.model import FlowMessage, StepExecutionStatus
|
|
14
|
+
from cognite.neat._workflows.steps.data_contracts import MultiRuleData
|
|
15
|
+
from cognite.neat._workflows.steps.step_model import Configurable, Step
|
|
16
16
|
|
|
17
17
|
CATEGORY = __name__.split(".")[-1].replace("_", " ").title()
|
|
18
18
|
|
|
@@ -6,9 +6,9 @@ from typing import ClassVar
|
|
|
6
6
|
import requests
|
|
7
7
|
from cognite.client import CogniteClient
|
|
8
8
|
|
|
9
|
-
from cognite.neat.
|
|
10
|
-
from cognite.neat.
|
|
11
|
-
from cognite.neat.
|
|
9
|
+
from cognite.neat._issues.errors import WorkflowStepNotInitializedError
|
|
10
|
+
from cognite.neat._workflows.model import FlowMessage, StepExecutionStatus
|
|
11
|
+
from cognite.neat._workflows.steps.step_model import Configurable, Step
|
|
12
12
|
|
|
13
13
|
CATEGORY = "IO Steps"
|
|
14
14
|
|
|
@@ -4,9 +4,9 @@ from typing import ClassVar, TypeVar
|
|
|
4
4
|
|
|
5
5
|
from pydantic import BaseModel, ConfigDict
|
|
6
6
|
|
|
7
|
-
from cognite.neat.
|
|
8
|
-
from cognite.neat.
|
|
9
|
-
from cognite.neat.
|
|
7
|
+
from cognite.neat._app.monitoring.metrics import NeatMetricsCollector
|
|
8
|
+
from cognite.neat._config import Config
|
|
9
|
+
from cognite.neat._workflows.model import FlowMessage, WorkflowConfigs
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class Configurable(BaseModel):
|
|
@@ -10,13 +10,13 @@ from typing import Any
|
|
|
10
10
|
from pydantic import BaseModel
|
|
11
11
|
|
|
12
12
|
# steps
|
|
13
|
-
import cognite.neat.
|
|
14
|
-
import cognite.neat.
|
|
15
|
-
from cognite.neat.
|
|
16
|
-
from cognite.neat.
|
|
17
|
-
from cognite.neat.
|
|
18
|
-
from cognite.neat.
|
|
19
|
-
from cognite.neat.
|
|
13
|
+
import cognite.neat._workflows.steps.lib.current
|
|
14
|
+
import cognite.neat._workflows.steps.lib.io
|
|
15
|
+
from cognite.neat._app.monitoring.metrics import NeatMetricsCollector
|
|
16
|
+
from cognite.neat._config import Config
|
|
17
|
+
from cognite.neat._issues.errors import WorkflowConfigurationNotSetError, WorkFlowMissingDataError
|
|
18
|
+
from cognite.neat._workflows.model import FlowMessage, WorkflowConfigs
|
|
19
|
+
from cognite.neat._workflows.steps.step_model import Configurable, DataContract, Step
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
class StepMetadata(BaseModel):
|
|
@@ -50,12 +50,12 @@ class StepsRegistry:
|
|
|
50
50
|
if self._step_classes:
|
|
51
51
|
# classes already loaded - no need to reload
|
|
52
52
|
return
|
|
53
|
-
for name, step_cls in inspect.getmembers(cognite.neat.
|
|
53
|
+
for name, step_cls in inspect.getmembers(cognite.neat._workflows.steps.lib.current):
|
|
54
54
|
if inspect.isclass(step_cls):
|
|
55
55
|
logging.info(f"Loading NEAT step {name}")
|
|
56
56
|
self._step_classes.append(step_cls)
|
|
57
57
|
self.categorized_steps["current"].add(name)
|
|
58
|
-
for name, step_cls in inspect.getmembers(cognite.neat.
|
|
58
|
+
for name, step_cls in inspect.getmembers(cognite.neat._workflows.steps.lib.io):
|
|
59
59
|
if inspect.isclass(step_cls):
|
|
60
60
|
logging.info(f"Loading NEAT step {name}")
|
|
61
61
|
self._step_classes.append(step_cls)
|
|
@@ -6,8 +6,8 @@ import time
|
|
|
6
6
|
import schedule
|
|
7
7
|
from fastapi import Request
|
|
8
8
|
|
|
9
|
-
from cognite.neat.
|
|
10
|
-
from cognite.neat.
|
|
9
|
+
from cognite.neat._workflows.manager import WorkflowManager
|
|
10
|
+
from cognite.neat._workflows.model import FlowMessage, StepType, WorkflowState
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class TriggerManager:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cognite-neat
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.94.0
|
|
4
4
|
Summary: Knowledge graph transformation
|
|
5
5
|
Home-page: https://cognite-neat.readthedocs-hosted.com/
|
|
6
6
|
License: Apache-2.0
|
|
@@ -12,6 +12,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
16
|
Provides-Extra: all
|
|
16
17
|
Provides-Extra: docs
|
|
17
18
|
Provides-Extra: google
|
|
@@ -22,13 +23,14 @@ Provides-Extra: service
|
|
|
22
23
|
Requires-Dist: PyYAML
|
|
23
24
|
Requires-Dist: backports.strenum (>=1.2,<2.0) ; python_version < "3.11"
|
|
24
25
|
Requires-Dist: cognite-sdk (>=7.54.6,<8.0.0)
|
|
25
|
-
Requires-Dist: deepdiff
|
|
26
26
|
Requires-Dist: exceptiongroup (>=1.1.3,<2.0.0) ; python_version < "3.11"
|
|
27
27
|
Requires-Dist: fastapi (>=0,<1) ; extra == "service" or extra == "all"
|
|
28
28
|
Requires-Dist: google-api-python-client ; extra == "google"
|
|
29
29
|
Requires-Dist: google-auth-oauthlib ; extra == "google"
|
|
30
30
|
Requires-Dist: gspread ; extra == "google"
|
|
31
|
+
Requires-Dist: ipycytoscape (>=1.3.3,<2.0.0)
|
|
31
32
|
Requires-Dist: jinja2 (>=3.1.2,<4.0.0) ; extra == "graphql" or extra == "all"
|
|
33
|
+
Requires-Dist: matplotlib (>=3.9.2,<4.0.0)
|
|
32
34
|
Requires-Dist: mkdocs ; extra == "docs"
|
|
33
35
|
Requires-Dist: mkdocs-autorefs (>=0.5.0,<0.6.0) ; extra == "docs"
|
|
34
36
|
Requires-Dist: mkdocs-git-authors-plugin ; extra == "docs"
|
|
@@ -38,6 +40,7 @@ Requires-Dist: mkdocs-glightbox ; extra == "docs"
|
|
|
38
40
|
Requires-Dist: mkdocs-jupyter ; extra == "docs"
|
|
39
41
|
Requires-Dist: mkdocs-material-extensions ; extra == "docs"
|
|
40
42
|
Requires-Dist: mkdocstrings[python] ; extra == "docs"
|
|
43
|
+
Requires-Dist: networkx (>=3.4.2,<4.0.0)
|
|
41
44
|
Requires-Dist: openpyxl
|
|
42
45
|
Requires-Dist: oxrdflib[oxigraph] (>=0.3.3,<0.4.0) ; extra == "oxi" or extra == "all"
|
|
43
46
|
Requires-Dist: pandas
|
|
@@ -45,6 +48,7 @@ Requires-Dist: prometheus-client (>=0,<1) ; extra == "service" or extra == "all"
|
|
|
45
48
|
Requires-Dist: pydantic (>=2,<3)
|
|
46
49
|
Requires-Dist: pymdown-extensions ; extra == "docs"
|
|
47
50
|
Requires-Dist: pyoxigraph (==0.3.19) ; extra == "oxi" or extra == "all"
|
|
51
|
+
Requires-Dist: python-multipart (==0.0.9) ; extra == "service" or extra == "all"
|
|
48
52
|
Requires-Dist: rdflib
|
|
49
53
|
Requires-Dist: requests
|
|
50
54
|
Requires-Dist: rich[jupyter] (>=13.7.1,<14.0.0) ; extra == "jupyter"
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
cognite/neat/__init__.py,sha256=VAfPc4TwZ_N_ykp6PLg9HeIwOnn4rj5dAXhiwWtiPVw,176
|
|
2
|
+
cognite/neat/_app/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
cognite/neat/_app/api/asgi/metrics.py,sha256=nxFy7L5cChTI0a-zkCiJ59Aq8yLuIJp5c9Dg0wRXtV0,152
|
|
4
|
+
cognite/neat/_app/api/configuration.py,sha256=Zul4zojPVdME6CHXjz0gLSH_buoU48j4JMHPJA232YE,3646
|
|
5
|
+
cognite/neat/_app/api/context_manager/__init__.py,sha256=yrV2Tj7cmpI9E1JxTNMzZhi4PmZOXlX1dIRrtOVb-30,91
|
|
6
|
+
cognite/neat/_app/api/context_manager/manager.py,sha256=9lL4QFxFsaAtMJBbN3b_roHIB5aP1wFEtow2UnZ67mA,381
|
|
7
|
+
cognite/neat/_app/api/data_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
cognite/neat/_app/api/data_classes/rest.py,sha256=axMBDGcYkR-W-_XhPRNVQdwDJ-EyZJ_zg62GK8WxIZ4,1299
|
|
9
|
+
cognite/neat/_app/api/explorer.py,sha256=FEiGeRW9aY7b86RtNkZPowDreScAsu4dXy4lOulB9fg,1777
|
|
10
|
+
cognite/neat/_app/api/routers/configuration.py,sha256=YuPzDeUx2dGZTpv8BXlo_P04leh_m4phwp4jBnEmrYg,599
|
|
11
|
+
cognite/neat/_app/api/routers/crud.py,sha256=ZWjMFZa82OELYn09WVwYJa6WJ908qaGgklNSwu6HiMM,3948
|
|
12
|
+
cognite/neat/_app/api/routers/metrics.py,sha256=S_bUQk_GjfQq7WbEhSVdow4MUYBZ_bZNafzgcKogXK8,210
|
|
13
|
+
cognite/neat/_app/api/routers/workflows.py,sha256=BpT_VGa7R4fVXPkw5AcFlpNcESyE8BFZN6OWAh1tSfQ,8880
|
|
14
|
+
cognite/neat/_app/api/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
cognite/neat/_app/api/utils/data_mapping.py,sha256=ocqRyeCLbk3gS1NrQQnDr0w-q-xbkqV60uLZzsJIdyE,564
|
|
16
|
+
cognite/neat/_app/api/utils/logging.py,sha256=WNmwcUOS0RRT_szeVwwu5CZ1dainx8iVXuVdtWT0n-M,806
|
|
17
|
+
cognite/neat/_app/api/utils/query_templates.py,sha256=ykeZhelLItwqpMR2INSNp5h3FhLnloDbvT51bBxpjmY,4594
|
|
18
|
+
cognite/neat/_app/main.py,sha256=UReswxzD-bTL5Lu-xE5HkSLzrXSnA6rUcqrRRq7BRmY,358
|
|
19
|
+
cognite/neat/_app/monitoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
cognite/neat/_app/monitoring/metrics.py,sha256=GKNoYEmnQc43FrXNaBC6myQugObxRXrUd6jgqLJlyP0,2690
|
|
21
|
+
cognite/neat/_app/ui/index.html,sha256=PQtvXjCd-PzogV-QjdaCGwSWz0PNn7T_fqnAznR3CCY,16
|
|
22
|
+
cognite/neat/_app/ui/neat-app/.gitignore,sha256=iRXaC85HOaGaxS3OQR8uYGM0ShdU4CpGHR26ThRHUww,312
|
|
23
|
+
cognite/neat/_app/ui/neat-app/README.md,sha256=cOr7x6X9RmqjITtafhsqQTg8vl1Ob8X0WC78WL21CdE,3359
|
|
24
|
+
cognite/neat/_app/ui/neat-app/build/asset-manifest.json,sha256=2bhLuwjqn5PVW0KAf15cEfp3zNFAzZVVcizRZxokVvk,463
|
|
25
|
+
cognite/neat/_app/ui/neat-app/build/favicon.ico,sha256=_Bw_morVrDlSHlMFOCjAzaJV1oM0sOLG6djD8HmP9VI,15406
|
|
26
|
+
cognite/neat/_app/ui/neat-app/build/img/architect-icon.svg,sha256=HDoJmSO2ayVvxDk6R6-d42TwytbGlXMPWm_J2qFjmDA,10756
|
|
27
|
+
cognite/neat/_app/ui/neat-app/build/img/developer-icon.svg,sha256=VeVFw2Pj97D4FPei6YLUJbVqJJKY24RzfF83UWUiujE,8374
|
|
28
|
+
cognite/neat/_app/ui/neat-app/build/img/sme-icon.svg,sha256=z9MJYUNpWnjW4sIf_C0GkbMTfP1EBixIhX4a72s4888,5333
|
|
29
|
+
cognite/neat/_app/ui/neat-app/build/index.html,sha256=zZeliqzRS8zJk5VA4ev_1LJyi-RmTdlNZ1PuDR-X_G0,628
|
|
30
|
+
cognite/neat/_app/ui/neat-app/build/logo192.png,sha256=RvR_LqdUJTCcGEshzFi21taYa6RVtLbg5HVzvoURd3I,344557
|
|
31
|
+
cognite/neat/_app/ui/neat-app/build/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
|
|
32
|
+
cognite/neat/_app/ui/neat-app/build/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
|
|
33
|
+
cognite/neat/_app/ui/neat-app/build/static/css/main.72e3d92e.css,sha256=SS8E_b4N1ayPHBsmNLAVf_VpFVpo4u2Xgmvq39awN1M,5743
|
|
34
|
+
cognite/neat/_app/ui/neat-app/build/static/css/main.72e3d92e.css.map,sha256=UCwPS3x4W1FET7XOTEKibp-aIpTklhq1NdWBfxKmw74,9689
|
|
35
|
+
cognite/neat/_app/ui/neat-app/build/static/js/main.5a52cf09.js,sha256=smnlEqWQMDt0wRRv2DCOilBzsZgWSd3OKQkyoXMt-m8,758028
|
|
36
|
+
cognite/neat/_app/ui/neat-app/build/static/js/main.5a52cf09.js.LICENSE.txt,sha256=M2qsmls4n4vaE1yB1m25JNt71IMv-VrlgyImZiTZVNE,2330
|
|
37
|
+
cognite/neat/_app/ui/neat-app/build/static/js/main.5a52cf09.js.map,sha256=Lf93Q5-M2-Yc8NTq59fJ7floyiT9f-ayFYFKDvnVZqU,3161888
|
|
38
|
+
cognite/neat/_app/ui/neat-app/build/static/media/logo.8093b84df9ed36a174c629d6fe0b730d.svg,sha256=EYf9q9JoVJ1L1np-XloeEZXCmaibzKmmpXCKn_44xzA,240334
|
|
39
|
+
cognite/neat/_app/ui/neat-app/package-lock.json,sha256=9Lp1Zuiuv3ahyJ7gZCt6Uv0Bk1ljiQ1EsePHeDvqvCk,716575
|
|
40
|
+
cognite/neat/_app/ui/neat-app/package.json,sha256=O3RrOKxtJk9E0J6NVJGMWCCwx0IAv2bVADrkXW9Vcqs,1680
|
|
41
|
+
cognite/neat/_app/ui/neat-app/public/favicon.ico,sha256=_Bw_morVrDlSHlMFOCjAzaJV1oM0sOLG6djD8HmP9VI,15406
|
|
42
|
+
cognite/neat/_app/ui/neat-app/public/img/architect-icon.svg,sha256=HDoJmSO2ayVvxDk6R6-d42TwytbGlXMPWm_J2qFjmDA,10756
|
|
43
|
+
cognite/neat/_app/ui/neat-app/public/img/developer-icon.svg,sha256=VeVFw2Pj97D4FPei6YLUJbVqJJKY24RzfF83UWUiujE,8374
|
|
44
|
+
cognite/neat/_app/ui/neat-app/public/img/sme-icon.svg,sha256=z9MJYUNpWnjW4sIf_C0GkbMTfP1EBixIhX4a72s4888,5333
|
|
45
|
+
cognite/neat/_app/ui/neat-app/public/index.html,sha256=PC5k2ooW6sqLp88hafUbhUUA84c4PPep6fpZovDPaao,1700
|
|
46
|
+
cognite/neat/_app/ui/neat-app/public/logo192.png,sha256=RvR_LqdUJTCcGEshzFi21taYa6RVtLbg5HVzvoURd3I,344557
|
|
47
|
+
cognite/neat/_app/ui/neat-app/public/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
|
|
48
|
+
cognite/neat/_app/ui/neat-app/public/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
|
|
49
|
+
cognite/neat/_app/ui/neat-app/src/App.css,sha256=pDHTEDeJfx_H6zxx9x0WfFKsR9R9bZRysWkYo_WInbI,570
|
|
50
|
+
cognite/neat/_app/ui/neat-app/src/App.js,sha256=bUgj-Ul-eGGiaQp_0F3ZXArR8_Qi06aHTxjjiWjkjAM,350
|
|
51
|
+
cognite/neat/_app/ui/neat-app/src/App.test.js,sha256=93hGkxlLhlfRv3DDfqcPSi1pTEVm7EFVCo5lDrYAqqQ,246
|
|
52
|
+
cognite/neat/_app/ui/neat-app/src/MainContainer.tsx,sha256=gNVCKmxum1XZE6KMF9AS_FsNOXnomV460gD8KFt7PWI,1767
|
|
53
|
+
cognite/neat/_app/ui/neat-app/src/components/JsonViewer.tsx,sha256=CBYu0al0BNcvTAFD6pdlBP9xozfp1PnGeXNA9ZRQpSo,1570
|
|
54
|
+
cognite/neat/_app/ui/neat-app/src/components/LocalUploader.tsx,sha256=LBS6sj5Xo5WmxlsP7_sMDYFVDwOcU4-gvgYgiFvG0G0,5192
|
|
55
|
+
cognite/neat/_app/ui/neat-app/src/components/OverviewComponentEditorDialog.tsx,sha256=X0Rwf4mB9E4hdruJVcLYv_0CqaXXVaj2QZ7W0bnJ70Y,2668
|
|
56
|
+
cognite/neat/_app/ui/neat-app/src/components/StepEditorDialog.tsx,sha256=g8WzchD2jdy2vRk1bQW7W4Kih24jPGnRRSGpDIaqyQ4,26371
|
|
57
|
+
cognite/neat/_app/ui/neat-app/src/components/TabPanel.tsx,sha256=SXYqNrTxJqmaS-JCnYJvLHvpqhrQt9J19JuidqKiKAI,839
|
|
58
|
+
cognite/neat/_app/ui/neat-app/src/components/Utils.tsx,sha256=UMQXn14K1bMp8RPXxAGNH_JsJ02R0-egFJGYEOBxjfI,1396
|
|
59
|
+
cognite/neat/_app/ui/neat-app/src/components/WorkflowDeleteDialog.tsx,sha256=5OhxIeA29wfuN07D0_3fGDNjdP2LSaZ1-_DKACRAIZ4,2168
|
|
60
|
+
cognite/neat/_app/ui/neat-app/src/components/WorkflowExecutionReport.tsx,sha256=1DH68GzUxFVqEvSD0iyLGUb6wzpSrVOr01URuXzVO-s,4724
|
|
61
|
+
cognite/neat/_app/ui/neat-app/src/components/WorkflowImportExportDialog.tsx,sha256=jrUUC_CklTmItfZ5X_G8y9lEpTh7ijCiaqa-52E5uC8,2654
|
|
62
|
+
cognite/neat/_app/ui/neat-app/src/components/WorkflowMetadataDialog.tsx,sha256=V66X2h9_qm3YoiJUcEwvDExtOW7GOGoM0c-JuXcQ5U8,2948
|
|
63
|
+
cognite/neat/_app/ui/neat-app/src/index.css,sha256=2vIsKWyAHT1TMIM2HMWfvcIuW_5SiqS60Zc7VMxUSKQ,366
|
|
64
|
+
cognite/neat/_app/ui/neat-app/src/index.js,sha256=dF8MTJQ0Z2jIpBuCEzgCTARKIv-G5R2xiRoIl-EI1RU,324
|
|
65
|
+
cognite/neat/_app/ui/neat-app/src/logo.svg,sha256=EYf9q9JoVJ1L1np-XloeEZXCmaibzKmmpXCKn_44xzA,240334
|
|
66
|
+
cognite/neat/_app/ui/neat-app/src/reportWebVitals.js,sha256=cUhRZphWFSgGwon5qsYkC0FLusUMYO5PfmJH8x6sDBw,362
|
|
67
|
+
cognite/neat/_app/ui/neat-app/src/setupTests.js,sha256=Ilg3WdAEX9-NYsnbCqy6n9i93eecZxqgjJfc_U6TDMY,241
|
|
68
|
+
cognite/neat/_app/ui/neat-app/src/types/WorkflowTypes.ts,sha256=4oqfy4K628opd3Aiky-5Op9rTDKy-y7TKGEdVCnlv-k,11122
|
|
69
|
+
cognite/neat/_app/ui/neat-app/src/views/AboutView.tsx,sha256=_ltM71LtDAscBhzaCytcAfNE0Gt34a7jgVgzn4Asi34,2053
|
|
70
|
+
cognite/neat/_app/ui/neat-app/src/views/ConfigView.tsx,sha256=mbYo37wFPsPYUmniP_o6WnC8bUy2vOdGTgPIMmdVwTU,7749
|
|
71
|
+
cognite/neat/_app/ui/neat-app/src/views/GlobalConfigView.tsx,sha256=1NMOby21ArrfYLMbbhH8M0OMRMQDaal91cGMaM9i8bM,8504
|
|
72
|
+
cognite/neat/_app/ui/neat-app/src/views/WorkflowView.tsx,sha256=dU6xZip3MVaVzKAF23Cu6qZTl2Dn_evO-RTDAVGfONg,18451
|
|
73
|
+
cognite/neat/_app/ui/neat-app/tsconfig.json,sha256=sw7AweQXRyJAIQ8Beft_380Q8zBr54pG1P_wutdPAIQ,664
|
|
74
|
+
cognite/neat/_config.py,sha256=f9Py4SEHwYYquIg-k1rC7MbXBLENXQauoZtLyUbWvJQ,10118
|
|
75
|
+
cognite/neat/_constants.py,sha256=fs8G6uMMzcP10kghwH4kvUERB5680BXUMQWIub0RMUI,1324
|
|
76
|
+
cognite/neat/_graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
+
cognite/neat/_graph/_shared.py,sha256=WTDR46N3V8GZRZaqXcqR_IJnlMCQU7aT9xUmr_jBwFE,927
|
|
78
|
+
cognite/neat/_graph/_tracking/__init__.py,sha256=pYj7c-YAUIP4hvN-4mlWnwaeZFerzL9_gM-oZhex7cE,91
|
|
79
|
+
cognite/neat/_graph/_tracking/base.py,sha256=qU7DQL_aeG22jS-uE3G17B1WL1sOOxHt-eR0XlTZngs,821
|
|
80
|
+
cognite/neat/_graph/_tracking/log.py,sha256=_MGgMWxPDfKG4kbX-YL1UO0Lfq8nbcjyFFJeqN5wpuc,928
|
|
81
|
+
cognite/neat/_graph/examples/Knowledge-Graph-Nordic44-dirty.xml,sha256=ujJip6XBs5n8enVDPzNnuGkMBwv8g21tIr1sEVJpK5M,1439359
|
|
82
|
+
cognite/neat/_graph/examples/Knowledge-Graph-Nordic44.xml,sha256=U2Ns-M4LRjT1fBkhmRj63ur7jDzlRtHK9yOLf_npZ_g,1437996
|
|
83
|
+
cognite/neat/_graph/examples/__init__.py,sha256=yAjHVY3b5jOjmbW-iLbhvu7BG014TpGi3K4igkDqW5I,368
|
|
84
|
+
cognite/neat/_graph/examples/skos-capturing-sheet-wind-topics.xlsx,sha256=CV_yK5ZSbYS_ktfIZUPD8Sevs47zpswLXQUDFkGE4Gw,45798
|
|
85
|
+
cognite/neat/_graph/extractors/__init__.py,sha256=wNP2QZ6_HVosbE_3aI6PyZtH1VpKOEGuXKjmzdo9hDQ,2006
|
|
86
|
+
cognite/neat/_graph/extractors/_base.py,sha256=khz8TjpJhh65gQKvbXWWRgPulTiLXu4e0lKBwFaR1Nk,500
|
|
87
|
+
cognite/neat/_graph/extractors/_classic_cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
+
cognite/neat/_graph/extractors/_classic_cdf/_assets.py,sha256=HE-axrJsfGfl1an_vwUR2oenfhGug_ONI57y0J-qwqw,6605
|
|
89
|
+
cognite/neat/_graph/extractors/_classic_cdf/_base.py,sha256=0CC1HPc3SR4mijlHBhUAYCo7dys1VV6Z7yu4VqzEprM,5075
|
|
90
|
+
cognite/neat/_graph/extractors/_classic_cdf/_classic.py,sha256=GoZtdyjVSDm6xcHhNCP_K_9zxJjeTCjd57BwwnB18Q0,10191
|
|
91
|
+
cognite/neat/_graph/extractors/_classic_cdf/_data_sets.py,sha256=8nGWyEydogWIu-BhwXqIIlUmCxraRlQr60CjDVUx_Ms,4298
|
|
92
|
+
cognite/neat/_graph/extractors/_classic_cdf/_events.py,sha256=cMWrT5hmZemToHzMmtxBEK6jOYe8V4NdmbJ45K2FajU,6509
|
|
93
|
+
cognite/neat/_graph/extractors/_classic_cdf/_files.py,sha256=GyA_s5Sk4U1wm9KYt4Aed4LL03VBgf0xF8sbUORykos,7555
|
|
94
|
+
cognite/neat/_graph/extractors/_classic_cdf/_labels.py,sha256=2LEUSjmvvXTMyWvPmGPT8aNBbsJbCOY2pyGLlCBRXHs,4767
|
|
95
|
+
cognite/neat/_graph/extractors/_classic_cdf/_relationships.py,sha256=UW3vEw_bVztJIz51sYSjlTk8ldg1e3JSmH_Xr8JV9Wc,8794
|
|
96
|
+
cognite/neat/_graph/extractors/_classic_cdf/_sequences.py,sha256=6vywy1iZQfScXH6BTEPTCDx_Ew04bkbkZvCJ3mAJbe4,6007
|
|
97
|
+
cognite/neat/_graph/extractors/_classic_cdf/_timeseries.py,sha256=pnNpFXypFQjPiydlvmro4s2x3JGakGOTyJPKNIHEb30,7503
|
|
98
|
+
cognite/neat/_graph/extractors/_dexpi.py,sha256=s_Eudbii-s4UFobs1VwuZd-W1iXFUJF8RSGwkyH9cWs,9437
|
|
99
|
+
cognite/neat/_graph/extractors/_dms.py,sha256=_-eUgqqIZv0jxDZUAlz6cS21JkyADDgLnyc8iZ5fBA0,6691
|
|
100
|
+
cognite/neat/_graph/extractors/_iodd.py,sha256=LNVkYOT1sqCz-fOqha3nsqLwjFWxgswVxV9vjNht4eA,18464
|
|
101
|
+
cognite/neat/_graph/extractors/_mock_graph_generator.py,sha256=7ijAJniloWGMuldc-UsKZWxcXBV_OF-3o6v2RImzTW4,15415
|
|
102
|
+
cognite/neat/_graph/extractors/_rdf_file.py,sha256=NknGs_sV183ZgY4BhxceikPPogwuoq0YA7QVoKSp6aY,1694
|
|
103
|
+
cognite/neat/_graph/loaders/__init__.py,sha256=TbeJqifd16JLOglPVNOeb6pN_w060UYag50KquBM_r0,769
|
|
104
|
+
cognite/neat/_graph/loaders/_base.py,sha256=6ZuJutmZSveGIpkBxd5k3tDvCBDY42JyZ98vEe_T84Q,3619
|
|
105
|
+
cognite/neat/_graph/loaders/_rdf2asset.py,sha256=QJE4HfDedOmvaXKUxm0RkuZeEqWUsgNuDrOQx--fvz8,17556
|
|
106
|
+
cognite/neat/_graph/loaders/_rdf2dms.py,sha256=kEB0mO27JSYycdJVzbSiCuIhp-YWek4hzIznWULT0_M,14987
|
|
107
|
+
cognite/neat/_graph/models.py,sha256=Z9aj825ZS_BCU6rwekyxKq7LL0QMh6i0DXGp7QQf_D4,182
|
|
108
|
+
cognite/neat/_graph/queries/__init__.py,sha256=BgDd-037kvtWwAoGAy8eORVNMiZ5-E9sIV0txIpeaN4,50
|
|
109
|
+
cognite/neat/_graph/queries/_base.py,sha256=2vXS9OcACLF__tyVM5WoaAo9-446tA4A6Xw1aL0h3js,12720
|
|
110
|
+
cognite/neat/_graph/queries/_construct.py,sha256=CW8uHtXXACUXDj1AcEjROXtvoiuyx0CTgZ0bURY5Neo,7213
|
|
111
|
+
cognite/neat/_graph/queries/_shared.py,sha256=K3svLkvw-DWPZUwIwpJRjPKg5UIRKFCn5jBLpuJjiHc,5330
|
|
112
|
+
cognite/neat/_graph/transformers/__init__.py,sha256=Za37uqOykDECwGZr3b6U6zfV236_-dPtY_ESHU_vVc8,889
|
|
113
|
+
cognite/neat/_graph/transformers/_base.py,sha256=b37Ek-9njuM5pTR_3XhnxCMrg_ip_2BMwM7ZhKpAAlw,328
|
|
114
|
+
cognite/neat/_graph/transformers/_classic_cdf.py,sha256=-4GCCwXNLz8NrOeSMavuzPXDRAGbuq-lZtH_xOicuMk,19216
|
|
115
|
+
cognite/neat/_graph/transformers/_iodd.py,sha256=yH-BvVQUswM8RmV2VvOPQAgwudhBJdxDLHW1RKxuuAY,729
|
|
116
|
+
cognite/neat/_graph/transformers/_prune_graph.py,sha256=fWZ4sMBf3XqoYC5nOU75Gl6XwscRe-wGYT-GiBFmcK8,5277
|
|
117
|
+
cognite/neat/_graph/transformers/_rdfpath.py,sha256=a-KoFecFXcEAJoa8MgyNtBBARC6bW9Q5eUfp5YOdGfU,1864
|
|
118
|
+
cognite/neat/_graph/transformers/_value_type.py,sha256=JorH-AgDXVZUkG_GCcwn51Mw0M2WIOV834t0kF_Nwvo,2614
|
|
119
|
+
cognite/neat/_issues/__init__.py,sha256=KkBEO-0Lg3vdvjrQtxKR6Wy2iV2mooc9utSO8-_9UuI,405
|
|
120
|
+
cognite/neat/_issues/_base.py,sha256=hUICh_IGrHyPnP--XQaf5W_GvJFwzfcmHfMj8c-Egr8,16138
|
|
121
|
+
cognite/neat/_issues/errors/__init__.py,sha256=0_rzFJa_fpF_OFyv1BTWm2Gejf-r3f-vuko5_hJ58-M,2078
|
|
122
|
+
cognite/neat/_issues/errors/_external.py,sha256=AuV2PyJcGjYxEnuwmi3zfYWPCF-yr4w39Uy0lQpeoqo,1619
|
|
123
|
+
cognite/neat/_issues/errors/_general.py,sha256=Afsp2OpP8lb5J9JrEDLlBWtU36Mx9AxtKaDxTFqRVKs,808
|
|
124
|
+
cognite/neat/_issues/errors/_properties.py,sha256=a-Sz58-Qd7t2ImM6UQypK7a7pINhetPWspKazvlrVYQ,2330
|
|
125
|
+
cognite/neat/_issues/errors/_resources.py,sha256=H3Pog-b_t-EJJnVTeACfQMvgTuE5rcZ8Yt89YHruqUA,3910
|
|
126
|
+
cognite/neat/_issues/errors/_workflow.py,sha256=m_Hlsvl5A1Oy7P3IROnz-4_do8_orZ1Pr1IHqsMyEys,971
|
|
127
|
+
cognite/neat/_issues/formatters.py,sha256=QCk41VLlpq-R9uaHpINYceZkIUoI9m4pwSq_yWPOmr8,3331
|
|
128
|
+
cognite/neat/_issues/warnings/__init__.py,sha256=iIxJrFHnTNmo2mqBErUb8pIzusikSs-AvvwYTKqkP_Y,2331
|
|
129
|
+
cognite/neat/_issues/warnings/_external.py,sha256=8N8eJcixU0IBl7lzKHv2rhg51J_oXwJfI_H46LjqYHo,974
|
|
130
|
+
cognite/neat/_issues/warnings/_general.py,sha256=9ZSNYBwFQ_XEagxYioUijJdCkdmT3VDQTlTO_JINe_E,617
|
|
131
|
+
cognite/neat/_issues/warnings/_models.py,sha256=iR8z5rKyNTnS9nskm9DWZvfx_474OHLjKVueDXUEsqw,3068
|
|
132
|
+
cognite/neat/_issues/warnings/_properties.py,sha256=eHK0uv52T5TC_xQvSiMiuYIVVTJiKjttkcGwA5G0Uak,1966
|
|
133
|
+
cognite/neat/_issues/warnings/_resources.py,sha256=s_HPZXrSyZroCnPjZ-gw4LDJF3FtFQsDhD-SNTk2fT4,1809
|
|
134
|
+
cognite/neat/_issues/warnings/user_modeling.py,sha256=_DlhvR287jSvpVqKxImNpaztX-w3v9Ol-fBpqj_6nfo,3643
|
|
135
|
+
cognite/neat/_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
|
+
cognite/neat/_rules/_constants.py,sha256=JrbtHRnF79mQN8Fkr6CowIKBMtrf8dRiI6Hjby34i3U,5606
|
|
137
|
+
cognite/neat/_rules/_shared.py,sha256=Y0hrSSBY9S09uYEtBQRDj0Mi_FgSrKGJfv0S9yCCyy4,1767
|
|
138
|
+
cognite/neat/_rules/analysis/__init__.py,sha256=MDkXtex0CTrRahqlGjkiGvnMsaXKoM5xoldvFhW6CPA,177
|
|
139
|
+
cognite/neat/_rules/analysis/_asset.py,sha256=2GjpAAxhAOov8ukvfvVJkqgeRl8D4Q3PUsOFN58lsPI,7364
|
|
140
|
+
cognite/neat/_rules/analysis/_base.py,sha256=btJYi55TAV8lsFtT57vL5wuV3vN21LfbuzcLZEmFVOw,16769
|
|
141
|
+
cognite/neat/_rules/analysis/_dms.py,sha256=0UhxxDrIS9HFUjsOBi91DTa0-vSf-kIrnMNhtYgWkL8,1785
|
|
142
|
+
cognite/neat/_rules/analysis/_information.py,sha256=iZTcBYsAkqC9cxwrj0KSz0bwbjKWUTrGszcSERkcA3Q,10229
|
|
143
|
+
cognite/neat/_rules/catalog/__init__.py,sha256=dzx-DYYJDc861aFiOI5o1FsySD9F1agY8SBsr3nCf4Y,148
|
|
144
|
+
cognite/neat/_rules/catalog/info-rules-imf.xlsx,sha256=M7oSkuzKOqJsNSTOjy4JTKfo00renxo_5taBAiD0A8k,55004
|
|
145
|
+
cognite/neat/_rules/exporters/__init__.py,sha256=jCwXAeyZJv7GNJ3hGG-80gb8LAidozsyFMzdNIsGt_Y,1204
|
|
146
|
+
cognite/neat/_rules/exporters/_base.py,sha256=ipI74rpyOoshrdJ5M1g2B8hyP76kCkxrWRqKS1klefY,1332
|
|
147
|
+
cognite/neat/_rules/exporters/_rules2dms.py,sha256=-KxYU7aCbyb-Xy2uuXoTSuYN7aQesFGR6p0mbBICdqc,14453
|
|
148
|
+
cognite/neat/_rules/exporters/_rules2excel.py,sha256=vfBFRzxBAVIPcg0dZaMoYOYu7hR02CcjqkZ4HPjfM1c,14991
|
|
149
|
+
cognite/neat/_rules/exporters/_rules2instance_template.py,sha256=8HM1SkzcucaEYpQi96ncMnL8STArX9Oe09JBhJJAN4I,5810
|
|
150
|
+
cognite/neat/_rules/exporters/_rules2ontology.py,sha256=ttEZ4Sd16MPumHbs3eoPWAQyitUKdcaBDkfVXT6vWug,21756
|
|
151
|
+
cognite/neat/_rules/exporters/_rules2yaml.py,sha256=O9vnzDHf1ep1Qu0po0GVjgu945HNx3-zRmhxv65sv6I,3052
|
|
152
|
+
cognite/neat/_rules/exporters/_validation.py,sha256=DVJGdNNU2WtAFgUg0h4SWVhveRErEPOcYdT65y5toV0,682
|
|
153
|
+
cognite/neat/_rules/importers/__init__.py,sha256=z682_ktGKDjr52DIL6cPvOercZS6-TYD_ZDo-MGqtck,1207
|
|
154
|
+
cognite/neat/_rules/importers/_base.py,sha256=S-9Mi_58IvrIZ3oZaPRFnRWVIVhewcqGp8tng3q6kbw,2982
|
|
155
|
+
cognite/neat/_rules/importers/_dms2rules.py,sha256=Hpjn8fPmH8f_Jnxx9RnS6nlqe-2JH1haiLy0ygg3nXU,22904
|
|
156
|
+
cognite/neat/_rules/importers/_dtdl2rules/__init__.py,sha256=CNR-sUihs2mnR1bPMKs3j3L4ds3vFTsrl6YycExZTfU,68
|
|
157
|
+
cognite/neat/_rules/importers/_dtdl2rules/_unit_lookup.py,sha256=wW4saKva61Q_i17guY0dc4OseJDQfqHy_QZBtm0OD6g,12134
|
|
158
|
+
cognite/neat/_rules/importers/_dtdl2rules/dtdl_converter.py,sha256=BwClXc1ONzWacXbdoG5741Vj7knhJL1rRgyHh0X194Y,11911
|
|
159
|
+
cognite/neat/_rules/importers/_dtdl2rules/dtdl_importer.py,sha256=rlVS-U1iJyfcX9LxqxqPT-wBeV8-vxBQR3AvLaihU-k,6153
|
|
160
|
+
cognite/neat/_rules/importers/_dtdl2rules/spec.py,sha256=u__f08rAiYG0FIRiWoecBN83bVN3GEy--Lvm7463Q68,12166
|
|
161
|
+
cognite/neat/_rules/importers/_rdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
|
+
cognite/neat/_rules/importers/_rdf/_base.py,sha256=bIEc0rwjZup7htJ_4Zmm7dytFjYRqUB6k8ttvSr62w8,4988
|
|
163
|
+
cognite/neat/_rules/importers/_rdf/_imf2rules/__init__.py,sha256=4ZuX81E-Tp4Vf6g_6Pb0iStzOCy7RJ83yxhvo4UddXY,63
|
|
164
|
+
cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2classes.py,sha256=8nMZTHicfh1WFqcIl1U_3N2Aq02rVgbGYJHxxmmXgB0,3746
|
|
165
|
+
cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2metadata.py,sha256=SANfCXoZtu440j4bZcT4_Btn-tEelD-wszHp_0QXUlI,979
|
|
166
|
+
cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2properties.py,sha256=6Rvo3e-PeWFZgNratzElGdnFRBTFiUcdlg_udRSc92Q,6172
|
|
167
|
+
cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2rules.py,sha256=KqQ6YbpKg-kWg60klgP8gWJx5S5jgOW6cATP2cnZoxQ,5221
|
|
168
|
+
cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=UqL9Sx4s_T2k9km9-6VFVkW_2tSPsn3_R3nmWPAyVPQ,10189
|
|
169
|
+
cognite/neat/_rules/importers/_rdf/_owl2rules/__init__.py,sha256=tdGcrgtozdQyST-pTlxIa4cLBNTLvtk1nNYR4vOdFSw,63
|
|
170
|
+
cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2classes.py,sha256=2Izln8dzkjFXuCSxz8PPwIFyNh1z3WxhnPE7_QsYrs8,1935
|
|
171
|
+
cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2metadata.py,sha256=Fm3HWrtCUWK09lF9HFR73HRZfFow260516DP5PnrWkY,2664
|
|
172
|
+
cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2properties.py,sha256=OA_PseTa-TOq4g8hPBE6xaWIw9U_Q8-GfAdLFVOoSp4,2146
|
|
173
|
+
cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2rules.py,sha256=ePB9iFRpk17vC946X1nBIdP7x3hV7abUQB70yQOmvko,1575
|
|
174
|
+
cognite/neat/_rules/importers/_rdf/_shared.py,sha256=FiAF1X0CnUcEiTT81gK3w7CbtDF0yW8WBo6V3ZUCRRc,19771
|
|
175
|
+
cognite/neat/_rules/importers/_spreadsheet2rules.py,sha256=rqtb_Y1-5UPlQc1Msci8F1mEcrs1lsa6iO4B-E1VXZ0,12472
|
|
176
|
+
cognite/neat/_rules/importers/_yaml2rules.py,sha256=5DsEMYo6JVHC_mBOaaR3J6on1rXSpk82plCsrOq5_l8,3144
|
|
177
|
+
cognite/neat/_rules/models/__init__.py,sha256=wB6Vo3hs9WRtQjHuXR_2HN4jot8ZJE0OiE2zAzw9Mik,1529
|
|
178
|
+
cognite/neat/_rules/models/_base_input.py,sha256=qJrxobZLqpc28adEUJTKdJ8hDUZ67SVDFkUJnGjcPOc,6647
|
|
179
|
+
cognite/neat/_rules/models/_base_rules.py,sha256=Yf4BE5XRSxFRbElrJcKzFwrGT_pOkT_mc_EKpr2-F1Q,13489
|
|
180
|
+
cognite/neat/_rules/models/_rdfpath.py,sha256=hqUMZCMeI8ESdJltu7FifuUhna5JNN_Heup2aYkV56Y,11882
|
|
181
|
+
cognite/neat/_rules/models/_types.py,sha256=jNzz7oO9uKIMqkjJ6kLEvRb83NERW0ZXURLvbPjgViA,4719
|
|
182
|
+
cognite/neat/_rules/models/asset/__init__.py,sha256=Z2tQEABW-q66bmHNcxMuIxPmYQBcGdiSZt7fHGe01dQ,363
|
|
183
|
+
cognite/neat/_rules/models/asset/_rules.py,sha256=ecMuxdEkfH3l6ROpe0n96lhOjQoLYugM3jeldyqScFc,4007
|
|
184
|
+
cognite/neat/_rules/models/asset/_rules_input.py,sha256=-8s79O1DnwNQNPjJhcdzBlJvjyaorXXqHQZSLRWOsvc,3379
|
|
185
|
+
cognite/neat/_rules/models/asset/_validation.py,sha256=6u86qLlr1ehG1I5kIZhfCYTqUenuxUu9n_d7yWMUrS0,2021
|
|
186
|
+
cognite/neat/_rules/models/data_types.py,sha256=ACQjS9vs7EjaNSO8R1kHiiNYbdeVQLCvxJYfZhWF8mM,9620
|
|
187
|
+
cognite/neat/_rules/models/dms/__init__.py,sha256=CUqUlVjz4yZX_-61F-2ofSoV7N9MlSYx2N7vM-omp7E,640
|
|
188
|
+
cognite/neat/_rules/models/dms/_exporter.py,sha256=dZAl5439p2K6LsA4yNpwCsEgNsxVkGjcmV9JGL3JAYE,30345
|
|
189
|
+
cognite/neat/_rules/models/dms/_rules.py,sha256=8VlGchvUHtBrcaP6DhpkQn6qBgd2zlmeQoakh09axuk,19369
|
|
190
|
+
cognite/neat/_rules/models/dms/_rules_input.py,sha256=LgehVseHiKLKfc7Osg3q8n1H64DUIe2iRDayh6Be4io,10919
|
|
191
|
+
cognite/neat/_rules/models/dms/_schema.py,sha256=HSmSDvOm5S0x4Vb9tH9Jvd5i9tXiiM08E_Sdu6q_iA8,50783
|
|
192
|
+
cognite/neat/_rules/models/dms/_validation.py,sha256=2KL1_GNnJ5cjsdk9uJTBV691_o8ZehqmgXSiaN5q8aw,15798
|
|
193
|
+
cognite/neat/_rules/models/domain.py,sha256=HOZ6e6pIWJWWYTTDPDWpuwEHoiUacOdkvjAI81vMdMk,3999
|
|
194
|
+
cognite/neat/_rules/models/entities/__init__.py,sha256=QD-h79HhjqCsgscNU5kuf1ieRCE94dOfpujLuzYbtHk,1469
|
|
195
|
+
cognite/neat/_rules/models/entities/_constants.py,sha256=ToiLaaF-hGLPfn3AsKIIrfB4ZdTk4cY1RjM9gA1Qjkg,288
|
|
196
|
+
cognite/neat/_rules/models/entities/_loaders.py,sha256=mb_iKnwGn1FOa4bcqIuvh4oy5tuUpOWF6pFOOB_9ndE,2693
|
|
197
|
+
cognite/neat/_rules/models/entities/_multi_value.py,sha256=5RgZBrJfw7VSE-6F50-Lqtio_xVo4vbezKmoyiDdcw8,2692
|
|
198
|
+
cognite/neat/_rules/models/entities/_single_value.py,sha256=JLX8t-Uft0qeY_honmv0GbIip59gtBvsaPQ9oNfZJis,17416
|
|
199
|
+
cognite/neat/_rules/models/entities/_types.py,sha256=df9rnXJJKciv2Bp-Ve2q4xdEJt6WWniq12Z0hW2d6sk,1917
|
|
200
|
+
cognite/neat/_rules/models/entities/_wrapped.py,sha256=FxC8HztW_tUUtuArAOwxyFfkdJnSEB4bgZoNmmmfiPk,7137
|
|
201
|
+
cognite/neat/_rules/models/information/__init__.py,sha256=fVvgXt-JuyZCP_mLgIVaeKD9pdAXe2BWUxU_BZs8e5g,480
|
|
202
|
+
cognite/neat/_rules/models/information/_rules.py,sha256=myMmtJLJs1nF81Su96wmDTM9-DP7dF-Ezs41RlmqMzk,14869
|
|
203
|
+
cognite/neat/_rules/models/information/_rules_input.py,sha256=LqWJM7D4kjPPC3Ok7WbsqwYpbSIk8hQun22JK8gVUFw,5277
|
|
204
|
+
cognite/neat/_rules/models/information/_validation.py,sha256=0ntsrXJV28yOFfhhXcKsP9TUr0LwKG_vaYPMHzHbTEI,9252
|
|
205
|
+
cognite/neat/_rules/models/mapping/__init__.py,sha256=jSn-dCckmVQF0ClSBOBvVacprzNxdhPpdyIlYVajjMY,198
|
|
206
|
+
cognite/neat/_rules/models/mapping/_base.py,sha256=xDjtbNvDXAh0F93WSvgdwoI_5K9XYu_w9hhG02ZZKtg,5922
|
|
207
|
+
cognite/neat/_rules/models/mapping/_classic2core.py,sha256=JWJRLcEh7YSJrnYxSqaYboj1YrrsVnP7XTBj9AgVJ3A,6826
|
|
208
|
+
cognite/neat/_rules/transformers/__init__.py,sha256=UM7D9_ebFTTGqXmTqew-0fCec0aZO98VbYAUmEzm--o,858
|
|
209
|
+
cognite/neat/_rules/transformers/_base.py,sha256=Q0cwHzFBxRp6srX7HFAvGzzIoQb07gWsE-rISHEbDGY,3272
|
|
210
|
+
cognite/neat/_rules/transformers/_converters.py,sha256=2lhmVIeOHOgOwwHHbjyGOhO_vv6xvR9DFDf1bzirwIA,34611
|
|
211
|
+
cognite/neat/_rules/transformers/_mapping.py,sha256=RWHKPMaP3JdeCNvoDGu9ZGHxfyeIgapYEBRoargnd2Q,6797
|
|
212
|
+
cognite/neat/_rules/transformers/_pipelines.py,sha256=-E5Hgitnr6ee8R9_3sqtjmWIPJ0w1xaLErG6Fo6ExVU,2603
|
|
213
|
+
cognite/neat/_rules/transformers/_verification.py,sha256=330I1i3Va7Nau3DK3bTgEEGSHppmLvT-1yBMocDxV1A,4694
|
|
214
|
+
cognite/neat/_session/__init__.py,sha256=fxQ5URVlUnmEGYyB8Baw7IDq-uYacqkigbc4b-Pr9Fw,58
|
|
215
|
+
cognite/neat/_session/_base.py,sha256=9QgOUeizAwG9P7xy5J8zOsRd5cMMkncYgv6PTeWgd_k,3564
|
|
216
|
+
cognite/neat/_session/_prepare.py,sha256=u7dJ4nZqB9j6JWoBx6em9ABKc_PA_yaRQWfiI1n3iks,2484
|
|
217
|
+
cognite/neat/_session/_read.py,sha256=JQyxG1-QyX8fbiUnwVexKzlgWMg9VUeTJvC0uFgAg_U,4401
|
|
218
|
+
cognite/neat/_session/_show.py,sha256=q1cuqpDRaNS1hCwgvpxk-nR1V3pcYPyQdyRn5zUMGWQ,10217
|
|
219
|
+
cognite/neat/_session/_state.py,sha256=ef7OiCxavk4_asIivENaWrvC3HcXZNV6wGldus55JD0,2488
|
|
220
|
+
cognite/neat/_session/_to.py,sha256=u--yGD2y9JKV-sf34PYsMf-nc9Qs2yibpPsv6IG0CLA,2125
|
|
221
|
+
cognite/neat/_session/_wizard.py,sha256=Rdld2eZ-Q5BYbmAwW8FlfAYebdlw_P6L6V2WSDk-dHI,1306
|
|
222
|
+
cognite/neat/_session/exceptions.py,sha256=qT0Mq3h-0NaDatvyr2D476LkSjmvyZtNmmLXtd1SLVg,1106
|
|
223
|
+
cognite/neat/_shared.py,sha256=RSaHm2eJceTlvb-hMMe4nHgoHdPYDfN3XcxDXo24k3A,1530
|
|
224
|
+
cognite/neat/_store/__init__.py,sha256=G-VG_YwfRt1kuPao07PDJyZ3w_0-eguzLUM13n-Z_RA,64
|
|
225
|
+
cognite/neat/_store/_base.py,sha256=xi9uxV12X5XcGW-fzTEeDfaTM6Rkt-KpGaeyLXqep4Q,14205
|
|
226
|
+
cognite/neat/_store/_provenance.py,sha256=mD14UnETX6YkR8RO60Oxz7vBPm2Dm8m2xwthhLIxqSc,4122
|
|
227
|
+
cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
|
+
cognite/neat/_utils/auth.py,sha256=hyDnVBUbbgVANzayxbh9uTWlYb924hmzPYkVwwLfDIg,13241
|
|
229
|
+
cognite/neat/_utils/auxiliary.py,sha256=kKPOPtwHj-RYerVCTQ_Rukn0Zkc6FNBhgQ1zOTAeRs8,5717
|
|
230
|
+
cognite/neat/_utils/cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
231
|
+
cognite/neat/_utils/cdf/data_classes.py,sha256=XdPsHfmE3G-4o1AT_rNRiT916kWRoUpOMfgCyYjI0xU,10461
|
|
232
|
+
cognite/neat/_utils/cdf/loaders/__init__.py,sha256=s2aPR5XLo6WZ0ybstAJlcGFYkA7CyHW1XO-NYpL0V6o,483
|
|
233
|
+
cognite/neat/_utils/cdf/loaders/_base.py,sha256=ryNC_AMXIESWXuTVJ-02L-HSVSpD6V49XdLTRYeFg70,1764
|
|
234
|
+
cognite/neat/_utils/cdf/loaders/_data_modeling.py,sha256=8JglDxxcK1Y0wpE3pLlRIve2r0vnRxdRDh16tEZBzzU,13565
|
|
235
|
+
cognite/neat/_utils/cdf/loaders/_ingestion.py,sha256=a9Td1pYVJRYgU7pQ1Adi_S2o2M5t7pFbUurRk1Hj7KM,6327
|
|
236
|
+
cognite/neat/_utils/collection_.py,sha256=m5pn78NRQ9vx8l-NdMTAdYDLCTB8CQLX-rqxAWt7vyg,602
|
|
237
|
+
cognite/neat/_utils/rdf_.py,sha256=VXDBQUt86vRntiGhejK35PlsbvKCUkuQQa1cMYz4SIc,5656
|
|
238
|
+
cognite/neat/_utils/spreadsheet.py,sha256=LI0c7dlW0zXHkHw0NvB-gg6Df6cDcE3FbiaHBYLXdzQ,2714
|
|
239
|
+
cognite/neat/_utils/text.py,sha256=PvTEsEjaTu8SE8yYaKUrce4msboMj933dK7-0Eey_rE,3652
|
|
240
|
+
cognite/neat/_utils/time_.py,sha256=O30LUiDH9TdOYz8_a9pFqTtJdg8vEjC3qHCk8xZblG8,345
|
|
241
|
+
cognite/neat/_utils/upload.py,sha256=X5GGWHswnW0BrL2ulmm5MnKKtn-t1C8Ps3gb9Byc914,4016
|
|
242
|
+
cognite/neat/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
|
|
243
|
+
cognite/neat/_version.py,sha256=BbCpQB0IaKmq_fOtysTb_iVtvqbH-vHS1DoS1eLd4w8,23
|
|
244
|
+
cognite/neat/_workflows/__init__.py,sha256=S0fZq7kvoqDKodHu1UIPsqcpdvXoefUWRPt1lqeQkQs,420
|
|
245
|
+
cognite/neat/_workflows/base.py,sha256=O1pcmfbme2gIVF2eOGrKZSUDmhZc8L9rI8UfvLN2YAM,26839
|
|
246
|
+
cognite/neat/_workflows/cdf_store.py,sha256=3pebnATPo6In4-1srpa3wzstynTOi3T6hwFX5uaie4c,18050
|
|
247
|
+
cognite/neat/_workflows/examples/Export_DMS/workflow.yaml,sha256=dViI5aotf6cvcsePXjDBB_osyw1IUbNu2-rsGS1-5NM,1898
|
|
248
|
+
cognite/neat/_workflows/examples/Export_Semantic_Data_Model/workflow.yaml,sha256=67glGNis215kQbxX-e4g5QO_6of0-Vaq4J9k81YUWCk,1461
|
|
249
|
+
cognite/neat/_workflows/examples/Import_DMS/workflow.yaml,sha256=i7FeD0dzUBhzorjMgo7v1mjShhgsEpobbxIAL-czt34,1364
|
|
250
|
+
cognite/neat/_workflows/examples/Validate_Rules/workflow.yaml,sha256=lmuC-zttewtZl5EjnUv8RuM9t2dC-F053duNQHKoPGg,1395
|
|
251
|
+
cognite/neat/_workflows/examples/Validate_Solution_Model/workflow.yaml,sha256=Oy3u9QJ7QZoKZqmY0mRMWtnJZd9agmbRZCrbvf32xis,1326
|
|
252
|
+
cognite/neat/_workflows/manager.py,sha256=mXrDZwTxyDP4WQRvIKlo9gnaEXL5fl0_pvHYlWVbKRI,14108
|
|
253
|
+
cognite/neat/_workflows/model.py,sha256=LQY7abYnz3CUEIlIEqoj0Eo6Q8yQukTQ0S_sPststCA,6570
|
|
254
|
+
cognite/neat/_workflows/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
|
+
cognite/neat/_workflows/steps/data_contracts.py,sha256=i_3YF-G-3LxcQGszn0XPYUYLp8PXTx2kNUSEbTgViFg,2470
|
|
256
|
+
cognite/neat/_workflows/steps/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
|
+
cognite/neat/_workflows/steps/lib/current/__init__.py,sha256=c22IznGdCSNCpXCi_yonlbbywJE1uj6bfVCv0X2LYeE,225
|
|
258
|
+
cognite/neat/_workflows/steps/lib/current/graph_extractor.py,sha256=iQsEs3a8pYISFqlP7lTMnPxz8Zic5Ep7CwB38jkRaJY,3711
|
|
259
|
+
cognite/neat/_workflows/steps/lib/current/graph_loader.py,sha256=EItu0wh-b-AFyn7iRhdThLjJ2NvHYBv3hY3x2w5sCqg,1693
|
|
260
|
+
cognite/neat/_workflows/steps/lib/current/graph_store.py,sha256=Fbd3Fb4K2QML_if46SLldikvBJUPJ2VUAG2Bzqcq-Qc,1586
|
|
261
|
+
cognite/neat/_workflows/steps/lib/current/rules_exporter.py,sha256=tMUa4Q3XKglNSdB1OJOKnA69d60d-tklnMaysRYxw30,27760
|
|
262
|
+
cognite/neat/_workflows/steps/lib/current/rules_importer.py,sha256=uoBne8M7lpLj3hb6hsjRL1sGDSQDWyxxuawVhe3lQCQ,17995
|
|
263
|
+
cognite/neat/_workflows/steps/lib/current/rules_validator.py,sha256=i1NZWGfDKUpbrN8ftVI0yvCqNy2ED3E6zL3TlqH4DVA,5054
|
|
264
|
+
cognite/neat/_workflows/steps/lib/io/__init__.py,sha256=k7IPbIq3ey19oRc5sA_15F99-O6dxzqbm1LihGRRo5A,32
|
|
265
|
+
cognite/neat/_workflows/steps/lib/io/io_steps.py,sha256=EZWqM_0hkfzCVnUxzHPNLIdvkqT6NUKDaZsrD_Z2jpU,16934
|
|
266
|
+
cognite/neat/_workflows/steps/step_model.py,sha256=XyKk3j8Q4Y4E9E9rai-LbEelQPlrhyzsDWzzzruoxOM,2946
|
|
267
|
+
cognite/neat/_workflows/steps_registry.py,sha256=dtQ5RBxABJeQkOvUvZxaSGEj0kf4jS0Tun41r3F_fJQ,10731
|
|
268
|
+
cognite/neat/_workflows/tasks.py,sha256=dr2xuIb8P5e5e9p_fjzRlvDbKsre2xGYrkc3wnRx7IY,789
|
|
269
|
+
cognite/neat/_workflows/triggers.py,sha256=u69xOsaTtM8_WD6ZeIIBB-XKwvlZmPHAsZQh_TnyHcM,7073
|
|
270
|
+
cognite/neat/_workflows/utils.py,sha256=gKdy3RLG7ctRhbCRwaDIWpL9Mi98zm56-d4jfHDqP1E,453
|
|
271
|
+
cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
272
|
+
cognite_neat-0.94.0.dist-info/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
|
|
273
|
+
cognite_neat-0.94.0.dist-info/METADATA,sha256=aKSpijqnnPjjnO0NTC98tdm4YBbP67wwGz8tM_DSnus,9668
|
|
274
|
+
cognite_neat-0.94.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
275
|
+
cognite_neat-0.94.0.dist-info/entry_points.txt,sha256=SsQlnl8SNMSSjE3acBI835JYFtsIinLSbVmHmMEXv6E,51
|
|
276
|
+
cognite_neat-0.94.0.dist-info/RECORD,,
|