cognite-neat 0.123.33__py3-none-any.whl → 0.123.35__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 +2 -2
- cognite/neat/_data_model/_constants.py +3 -0
- cognite/neat/_data_model/_identifiers.py +61 -0
- cognite/neat/_data_model/models/dms/_space.py +1 -1
- cognite/neat/_data_model/models/entities/__init__.py +46 -0
- cognite/neat/_data_model/models/entities/_base.py +100 -0
- cognite/neat/_data_model/models/entities/_data_types.py +144 -0
- cognite/neat/{data_model → _data_model}/models/entities/_identifiers.py +1 -1
- cognite/neat/_data_model/models/entities/_parser.py +194 -0
- cognite/neat/_version.py +1 -1
- cognite/neat/{core → v0/core}/_client/_api/data_modeling_loaders.py +6 -6
- cognite/neat/{core → v0/core}/_client/_api/neat_instances.py +5 -5
- cognite/neat/{core → v0/core}/_client/_api/schema.py +5 -5
- cognite/neat/{core → v0/core}/_client/_api/statistics.py +3 -3
- cognite/neat/{core → v0/core}/_client/_api_client.py +1 -1
- cognite/neat/{core → v0/core}/_client/data_classes/schema.py +4 -4
- cognite/neat/{core → v0/core}/_client/testing.py +1 -1
- cognite/neat/{core → v0/core}/_constants.py +3 -3
- cognite/neat/{core → v0/core}/_data_model/_shared.py +4 -4
- cognite/neat/{core → v0/core}/_data_model/analysis/_base.py +8 -8
- cognite/neat/{core → v0/core}/_data_model/exporters/_base.py +7 -7
- cognite/neat/{core → v0/core}/_data_model/exporters/_data_model2dms.py +9 -9
- cognite/neat/{core → v0/core}/_data_model/exporters/_data_model2excel.py +9 -9
- cognite/neat/{core → v0/core}/_data_model/exporters/_data_model2instance_template.py +4 -4
- cognite/neat/{core → v0/core}/_data_model/exporters/_data_model2ontology.py +9 -9
- cognite/neat/{core → v0/core}/_data_model/exporters/_data_model2yaml.py +1 -1
- cognite/neat/{core → v0/core}/_data_model/importers/_base.py +5 -5
- cognite/neat/{core → v0/core}/_data_model/importers/_base_file_reader.py +2 -2
- cognite/neat/{core → v0/core}/_data_model/importers/_dict2data_model.py +5 -5
- cognite/neat/{core → v0/core}/_data_model/importers/_dms2data_model.py +12 -12
- cognite/neat/{core → v0/core}/_data_model/importers/_graph2data_model.py +12 -12
- cognite/neat/{core → v0/core}/_data_model/importers/_rdf/_base.py +12 -12
- cognite/neat/{core → v0/core}/_data_model/importers/_rdf/_inference2rdata_model.py +14 -14
- cognite/neat/{core → v0/core}/_data_model/importers/_rdf/_owl2data_model.py +2 -2
- cognite/neat/{core → v0/core}/_data_model/importers/_rdf/_shared.py +7 -7
- cognite/neat/{core → v0/core}/_data_model/importers/_spreadsheet2data_model.py +8 -8
- cognite/neat/{core → v0/core}/_data_model/models/__init__.py +3 -3
- cognite/neat/{core → v0/core}/_data_model/models/_base_verified.py +5 -5
- cognite/neat/{core → v0/core}/_data_model/models/_import_contexts.py +1 -1
- cognite/neat/{core → v0/core}/_data_model/models/_types.py +5 -5
- cognite/neat/{core → v0/core}/_data_model/models/conceptual/_unverified.py +5 -5
- cognite/neat/{core → v0/core}/_data_model/models/conceptual/_validation.py +12 -12
- cognite/neat/{core → v0/core}/_data_model/models/conceptual/_verified.py +9 -9
- cognite/neat/{core → v0/core}/_data_model/models/data_types.py +3 -3
- cognite/neat/{core → v0/core}/_data_model/models/entities/_loaders.py +2 -2
- cognite/neat/{core → v0/core}/_data_model/models/entities/_multi_value.py +2 -2
- cognite/neat/{core → v0/core}/_data_model/models/entities/_restrictions.py +6 -6
- cognite/neat/{core → v0/core}/_data_model/models/entities/_single_value.py +3 -3
- cognite/neat/{core → v0/core}/_data_model/models/mapping/_classic2core.py +5 -5
- cognite/neat/{core → v0/core}/_data_model/models/physical/__init__.py +1 -1
- cognite/neat/{core → v0/core}/_data_model/models/physical/_exporter.py +8 -8
- cognite/neat/{core → v0/core}/_data_model/models/physical/_unverified.py +8 -8
- cognite/neat/{core → v0/core}/_data_model/models/physical/_validation.py +16 -16
- cognite/neat/{core → v0/core}/_data_model/models/physical/_verified.py +10 -10
- cognite/neat/{core → v0/core}/_data_model/transformers/_base.py +4 -4
- cognite/neat/{core → v0/core}/_data_model/transformers/_converters.py +25 -25
- cognite/neat/{core → v0/core}/_data_model/transformers/_mapping.py +7 -7
- cognite/neat/{core → v0/core}/_data_model/transformers/_union_conceptual.py +5 -5
- cognite/neat/{core → v0/core}/_data_model/transformers/_verification.py +7 -7
- cognite/neat/{core → v0/core}/_instances/_tracking/base.py +1 -1
- cognite/neat/{core → v0/core}/_instances/_tracking/log.py +1 -1
- cognite/neat/{core → v0/core}/_instances/extractors/__init__.py +1 -1
- cognite/neat/{core → v0/core}/_instances/extractors/_base.py +6 -6
- cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_base.py +7 -7
- cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_classic.py +12 -12
- cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_relationships.py +3 -3
- cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_sequences.py +2 -2
- cognite/neat/{core → v0/core}/_instances/extractors/_dict.py +2 -2
- cognite/neat/{core → v0/core}/_instances/extractors/_dms.py +6 -6
- cognite/neat/{core → v0/core}/_instances/extractors/_dms_graph.py +11 -11
- cognite/neat/{core → v0/core}/_instances/extractors/_mock_graph_generator.py +10 -10
- cognite/neat/{core → v0/core}/_instances/extractors/_raw.py +3 -3
- cognite/neat/{core → v0/core}/_instances/extractors/_rdf_file.py +7 -7
- cognite/neat/{core → v0/core}/_instances/loaders/_base.py +5 -5
- cognite/neat/{core → v0/core}/_instances/loaders/_rdf2dms.py +17 -17
- cognite/neat/{core → v0/core}/_instances/loaders/_rdf_to_instance_space.py +11 -11
- cognite/neat/{core → v0/core}/_instances/queries/_select.py +3 -3
- cognite/neat/{core → v0/core}/_instances/queries/_update.py +1 -1
- cognite/neat/{core → v0/core}/_instances/transformers/_base.py +4 -4
- cognite/neat/{core → v0/core}/_instances/transformers/_classic_cdf.py +6 -6
- cognite/neat/{core → v0/core}/_instances/transformers/_prune_graph.py +4 -4
- cognite/neat/{core → v0/core}/_instances/transformers/_rdfpath.py +1 -1
- cognite/neat/{core → v0/core}/_instances/transformers/_value_type.py +4 -4
- cognite/neat/{core → v0/core}/_issues/_base.py +5 -5
- cognite/neat/{core → v0/core}/_issues/_contextmanagers.py +1 -1
- cognite/neat/{core → v0/core}/_issues/_factory.py +3 -3
- cognite/neat/{core → v0/core}/_issues/errors/__init__.py +1 -1
- cognite/neat/{core → v0/core}/_issues/errors/_external.py +1 -1
- cognite/neat/{core → v0/core}/_issues/errors/_general.py +1 -1
- cognite/neat/{core → v0/core}/_issues/errors/_properties.py +1 -1
- cognite/neat/{core → v0/core}/_issues/errors/_resources.py +2 -2
- cognite/neat/{core → v0/core}/_issues/errors/_wrapper.py +2 -2
- cognite/neat/{core → v0/core}/_issues/warnings/__init__.py +1 -1
- cognite/neat/{core → v0/core}/_issues/warnings/_external.py +1 -1
- cognite/neat/{core → v0/core}/_issues/warnings/_general.py +1 -1
- cognite/neat/{core → v0/core}/_issues/warnings/_models.py +2 -2
- cognite/neat/{core → v0/core}/_issues/warnings/_properties.py +2 -2
- cognite/neat/{core → v0/core}/_issues/warnings/_resources.py +1 -1
- cognite/neat/{core → v0/core}/_issues/warnings/user_modeling.py +1 -1
- cognite/neat/{core → v0/core}/_store/_data_model.py +12 -12
- cognite/neat/{core → v0/core}/_store/_instance.py +10 -10
- cognite/neat/{core → v0/core}/_store/_provenance.py +3 -3
- cognite/neat/{core → v0/core}/_store/exceptions.py +4 -4
- cognite/neat/{core → v0/core}/_utils/auth.py +1 -1
- cognite/neat/{core → v0/core}/_utils/auxiliary.py +1 -1
- cognite/neat/{core → v0/core}/_utils/collection_.py +2 -2
- cognite/neat/{core → v0/core}/_utils/graph_transformations_report.py +1 -1
- cognite/neat/{core → v0/core}/_utils/rdf_.py +1 -1
- cognite/neat/{core → v0/core}/_utils/reader/_base.py +1 -1
- cognite/neat/{core → v0/core}/_utils/spreadsheet.py +1 -1
- cognite/neat/{core → v0/core}/_utils/text.py +1 -1
- cognite/neat/{core → v0/core}/_utils/upload.py +3 -3
- cognite/neat/v0/plugins/__init__.py +4 -0
- cognite/neat/v0/plugins/_base.py +9 -0
- cognite/neat/v0/plugins/_data_model.py +48 -0
- cognite/neat/{plugins → v0/plugins}/_issues.py +1 -1
- cognite/neat/{plugins → v0/plugins}/_manager.py +7 -16
- cognite/neat/{session → v0/session}/_base.py +10 -10
- cognite/neat/{session → v0/session}/_collector.py +1 -1
- cognite/neat/{session → v0/session}/_drop.py +3 -3
- cognite/neat/{session → v0/session}/_explore.py +2 -2
- cognite/neat/{session → v0/session}/_fix.py +2 -2
- cognite/neat/{session → v0/session}/_inspect.py +3 -3
- cognite/neat/{session → v0/session}/_mapping.py +3 -3
- cognite/neat/{session → v0/session}/_plugin.py +4 -5
- cognite/neat/{session → v0/session}/_prepare.py +8 -8
- cognite/neat/{session → v0/session}/_read.py +17 -17
- cognite/neat/{session → v0/session}/_set.py +8 -8
- cognite/neat/{session → v0/session}/_show.py +5 -5
- cognite/neat/{session → v0/session}/_state.py +10 -10
- cognite/neat/{session → v0/session}/_subset.py +4 -4
- cognite/neat/{session → v0/session}/_template.py +11 -11
- cognite/neat/{session → v0/session}/_to.py +12 -12
- cognite/neat/{session → v0/session}/_wizard.py +1 -1
- cognite/neat/{session → v0/session}/engine/_load.py +1 -1
- cognite/neat/{session → v0/session}/exceptions.py +5 -5
- {cognite_neat-0.123.33.dist-info → cognite_neat-0.123.35.dist-info}/METADATA +1 -1
- cognite_neat-0.123.35.dist-info/RECORD +218 -0
- cognite/neat/data_model/models/entities/__init__.py +0 -9
- cognite/neat/plugins/__init__.py +0 -3
- cognite/neat/plugins/data_model/__init__.py +0 -0
- cognite/neat/plugins/data_model/importers/__init__.py +0 -5
- cognite/neat/plugins/data_model/importers/_base.py +0 -28
- cognite_neat-0.123.33.dist-info/RECORD +0 -215
- /cognite/neat/{data_model → _data_model}/models/entities/_constants.py +0 -0
- /cognite/neat/{core → v0}/__init__.py +0 -0
- /cognite/neat/{core/_client/_api → v0/core}/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_client/__init__.py +0 -0
- /cognite/neat/{core/_client/data_classes → v0/core/_client/_api}/__init__.py +0 -0
- /cognite/neat/{core/_data_model → v0/core/_client/data_classes}/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_client/data_classes/data_modeling.py +0 -0
- /cognite/neat/{core → v0/core}/_client/data_classes/neat_sequence.py +0 -0
- /cognite/neat/{core → v0/core}/_client/data_classes/statistics.py +0 -0
- /cognite/neat/{core → v0/core}/_config.py +0 -0
- /cognite/neat/{core/_instances → v0/core/_data_model}/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/_constants.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/analysis/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/catalog/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/catalog/classic_model.xlsx +0 -0
- /cognite/neat/{core → v0/core}/_data_model/catalog/conceptual-imf-data-model.xlsx +0 -0
- /cognite/neat/{core → v0/core}/_data_model/catalog/hello_world_pump.xlsx +0 -0
- /cognite/neat/{core → v0/core}/_data_model/exporters/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/importers/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/importers/_rdf/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/models/_base_unverified.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/models/conceptual/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/models/entities/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/models/entities/_constants.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/models/entities/_types.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/models/entities/_wrapped.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/models/mapping/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_data_model/models/mapping/_classic2core.yaml +0 -0
- /cognite/neat/{core → v0/core}/_data_model/transformers/__init__.py +0 -0
- /cognite/neat/{core/_instances/extractors/_classic_cdf → v0/core/_instances}/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/_shared.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/_tracking/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/examples/Knowledge-Graph-Nordic44-dirty.xml +0 -0
- /cognite/neat/{core → v0/core}/_instances/examples/Knowledge-Graph-Nordic44.xml +0 -0
- /cognite/neat/{core → v0/core}/_instances/examples/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/examples/skos-capturing-sheet-wind-topics.xlsx +0 -0
- /cognite/neat/{core/_utils → v0/core/_instances/extractors/_classic_cdf}/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_assets.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_data_sets.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_events.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_files.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_labels.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/extractors/_classic_cdf/_timeseries.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/loaders/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/queries/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/queries/_base.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/queries/_queries.py +0 -0
- /cognite/neat/{core → v0/core}/_instances/transformers/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_issues/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_issues/formatters.py +0 -0
- /cognite/neat/{core → v0/core}/_shared.py +0 -0
- /cognite/neat/{core → v0/core}/_store/__init__.py +0 -0
- /cognite/neat/{data_model → v0/core/_utils}/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_utils/io_.py +0 -0
- /cognite/neat/{core → v0/core}/_utils/reader/__init__.py +0 -0
- /cognite/neat/{core → v0/core}/_utils/tarjan.py +0 -0
- /cognite/neat/{core → v0/core}/_utils/time_.py +0 -0
- /cognite/neat/{core → v0/core}/_utils/xml_.py +0 -0
- /cognite/neat/{session → v0/session}/__init__.py +0 -0
- /cognite/neat/{session → v0/session}/_experimental.py +0 -0
- /cognite/neat/{session → v0/session}/_state/README.md +0 -0
- /cognite/neat/{session → v0/session}/engine/__init__.py +0 -0
- /cognite/neat/{session → v0/session}/engine/_import.py +0 -0
- /cognite/neat/{session → v0/session}/engine/_interface.py +0 -0
- {cognite_neat-0.123.33.dist-info → cognite_neat-0.123.35.dist-info}/WHEEL +0 -0
- {cognite_neat-0.123.33.dist-info → cognite_neat-0.123.35.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,19 +4,19 @@ from typing import Any
|
|
|
4
4
|
|
|
5
5
|
from rdflib import URIRef
|
|
6
6
|
|
|
7
|
-
from cognite.neat.core._data_model.transformers import PrefixEntities, StandardizeNaming
|
|
8
|
-
from cognite.neat.core._data_model.transformers._converters import StandardizeSpaceAndVersion
|
|
9
|
-
from cognite.neat.core._instances.transformers import (
|
|
7
|
+
from cognite.neat.v0.core._data_model.transformers import PrefixEntities, StandardizeNaming
|
|
8
|
+
from cognite.neat.v0.core._data_model.transformers._converters import StandardizeSpaceAndVersion
|
|
9
|
+
from cognite.neat.v0.core._instances.transformers import (
|
|
10
10
|
ConnectionToLiteral,
|
|
11
11
|
ConvertLiteral,
|
|
12
12
|
LiteralToEntity,
|
|
13
13
|
RelationshipAsEdgeTransformer,
|
|
14
14
|
)
|
|
15
|
-
from cognite.neat.core._instances.transformers._rdfpath import MakeConnectionOnExactMatch
|
|
16
|
-
from cognite.neat.core._issues import IssueList
|
|
17
|
-
from cognite.neat.core._issues.errors import NeatValueError
|
|
18
|
-
from cognite.neat.core._utils.text import humanize_collection
|
|
19
|
-
from cognite.neat.session._experimental import ExperimentalFlags
|
|
15
|
+
from cognite.neat.v0.core._instances.transformers._rdfpath import MakeConnectionOnExactMatch
|
|
16
|
+
from cognite.neat.v0.core._issues import IssueList
|
|
17
|
+
from cognite.neat.v0.core._issues.errors import NeatValueError
|
|
18
|
+
from cognite.neat.v0.core._utils.text import humanize_collection
|
|
19
|
+
from cognite.neat.v0.session._experimental import ExperimentalFlags
|
|
20
20
|
|
|
21
21
|
from ._state import SessionState
|
|
22
22
|
from .exceptions import NeatSessionError, session_class_wrapper
|
|
@@ -4,38 +4,38 @@ from typing import Any, Literal, cast
|
|
|
4
4
|
from cognite.client.data_classes.data_modeling import DataModelId, DataModelIdentifier
|
|
5
5
|
from cognite.client.utils.useful_types import SequenceNotStr
|
|
6
6
|
|
|
7
|
-
from cognite.neat.core._client import NeatClient
|
|
8
|
-
from cognite.neat.core._constants import (
|
|
7
|
+
from cognite.neat.v0.core._client import NeatClient
|
|
8
|
+
from cognite.neat.v0.core._constants import (
|
|
9
9
|
CLASSIC_CDF_NAMESPACE,
|
|
10
10
|
get_default_prefixes_and_namespaces,
|
|
11
11
|
)
|
|
12
|
-
from cognite.neat.core._data_model import catalog, importers
|
|
13
|
-
from cognite.neat.core._data_model.importers import BaseImporter
|
|
14
|
-
from cognite.neat.core._data_model.models.entities._single_value import ViewEntity
|
|
15
|
-
from cognite.neat.core._data_model.transformers import ClassicPrepareCore
|
|
16
|
-
from cognite.neat.core._data_model.transformers._converters import (
|
|
12
|
+
from cognite.neat.v0.core._data_model import catalog, importers
|
|
13
|
+
from cognite.neat.v0.core._data_model.importers import BaseImporter
|
|
14
|
+
from cognite.neat.v0.core._data_model.models.entities._single_value import ViewEntity
|
|
15
|
+
from cognite.neat.v0.core._data_model.transformers import ClassicPrepareCore
|
|
16
|
+
from cognite.neat.v0.core._data_model.transformers._converters import (
|
|
17
17
|
ToEnterpriseModel,
|
|
18
18
|
_SubsetEditableCDMPhysicalDataModel,
|
|
19
19
|
)
|
|
20
|
-
from cognite.neat.core._instances import examples as instances_examples
|
|
21
|
-
from cognite.neat.core._instances import extractors
|
|
22
|
-
from cognite.neat.core._instances.extractors._classic_cdf._base import InstanceIdPrefix
|
|
23
|
-
from cognite.neat.core._instances.transformers import (
|
|
20
|
+
from cognite.neat.v0.core._instances import examples as instances_examples
|
|
21
|
+
from cognite.neat.v0.core._instances import extractors
|
|
22
|
+
from cognite.neat.v0.core._instances.extractors._classic_cdf._base import InstanceIdPrefix
|
|
23
|
+
from cognite.neat.v0.core._instances.transformers import (
|
|
24
24
|
ConvertLiteral,
|
|
25
25
|
LiteralToEntity,
|
|
26
26
|
Transformers,
|
|
27
27
|
)
|
|
28
|
-
from cognite.neat.core._instances.transformers._prune_graph import (
|
|
28
|
+
from cognite.neat.v0.core._instances.transformers._prune_graph import (
|
|
29
29
|
AttachPropertyFromTargetToSource,
|
|
30
30
|
PruneDeadEndEdges,
|
|
31
31
|
PruneInstancesOfUnknownType,
|
|
32
32
|
PruneTypes,
|
|
33
33
|
)
|
|
34
|
-
from cognite.neat.core._issues import IssueList
|
|
35
|
-
from cognite.neat.core._issues.errors import NeatValueError
|
|
36
|
-
from cognite.neat.core._issues.warnings import MissingCogniteClientWarning
|
|
37
|
-
from cognite.neat.core._utils.reader import NeatReader
|
|
38
|
-
from cognite.neat.session._experimental import ExperimentalFlags
|
|
34
|
+
from cognite.neat.v0.core._issues import IssueList
|
|
35
|
+
from cognite.neat.v0.core._issues.errors import NeatValueError
|
|
36
|
+
from cognite.neat.v0.core._issues.warnings import MissingCogniteClientWarning
|
|
37
|
+
from cognite.neat.v0.core._utils.reader import NeatReader
|
|
38
|
+
from cognite.neat.v0.session._experimental import ExperimentalFlags
|
|
39
39
|
|
|
40
40
|
from ._state import SessionState
|
|
41
41
|
from ._wizard import NeatObjectType, RDFFileType, XMLFileType, object_wizard, rdf_dm_wizard, xml_format_wizard
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
from cognite.client import CogniteClient
|
|
2
2
|
from cognite.client import data_modeling as dm
|
|
3
3
|
|
|
4
|
-
from cognite.neat.core._client import NeatClient
|
|
5
|
-
from cognite.neat.core._constants import COGNITE_MODELS
|
|
6
|
-
from cognite.neat.core._data_model.models import PhysicalDataModel
|
|
7
|
-
from cognite.neat.core._data_model.transformers import SetIDDMSModel
|
|
8
|
-
from cognite.neat.core._instances.transformers import SetType
|
|
9
|
-
from cognite.neat.core._issues import IssueList
|
|
10
|
-
from cognite.neat.core._issues.errors import NeatValueError
|
|
11
|
-
from cognite.neat.core._utils.text import humanize_collection
|
|
4
|
+
from cognite.neat.v0.core._client import NeatClient
|
|
5
|
+
from cognite.neat.v0.core._constants import COGNITE_MODELS
|
|
6
|
+
from cognite.neat.v0.core._data_model.models import PhysicalDataModel
|
|
7
|
+
from cognite.neat.v0.core._data_model.transformers import SetIDDMSModel
|
|
8
|
+
from cognite.neat.v0.core._instances.transformers import SetType
|
|
9
|
+
from cognite.neat.v0.core._issues import IssueList
|
|
10
|
+
from cognite.neat.v0.core._issues.errors import NeatValueError
|
|
11
|
+
from cognite.neat.v0.core._utils.text import humanize_collection
|
|
12
12
|
|
|
13
13
|
from ._state import SessionState
|
|
14
14
|
from .exceptions import NeatSessionError, session_class_wrapper
|
|
@@ -6,11 +6,11 @@ import networkx as nx
|
|
|
6
6
|
from IPython.display import HTML, display
|
|
7
7
|
from pyvis.network import Network as PyVisNetwork # type: ignore
|
|
8
8
|
|
|
9
|
-
from cognite.neat.core._constants import IN_NOTEBOOK, IN_PYODIDE
|
|
10
|
-
from cognite.neat.core._data_model.analysis._base import DataModelAnalysis
|
|
11
|
-
from cognite.neat.core._utils.io_ import to_directory_compatible
|
|
12
|
-
from cognite.neat.core._utils.rdf_ import remove_namespace_from_uri, uri_display_name
|
|
13
|
-
from cognite.neat.session.exceptions import NeatSessionError
|
|
9
|
+
from cognite.neat.v0.core._constants import IN_NOTEBOOK, IN_PYODIDE
|
|
10
|
+
from cognite.neat.v0.core._data_model.analysis._base import DataModelAnalysis
|
|
11
|
+
from cognite.neat.v0.core._utils.io_ import to_directory_compatible
|
|
12
|
+
from cognite.neat.v0.core._utils.rdf_ import remove_namespace_from_uri, uri_display_name
|
|
13
|
+
from cognite.neat.v0.session.exceptions import NeatSessionError
|
|
14
14
|
|
|
15
15
|
from ._state import SessionState
|
|
16
16
|
from .exceptions import session_class_wrapper
|
|
@@ -3,18 +3,18 @@ from typing import Literal, cast
|
|
|
3
3
|
|
|
4
4
|
from rdflib import URIRef
|
|
5
5
|
|
|
6
|
-
from cognite.neat.core._client import NeatClient
|
|
7
|
-
from cognite.neat.core._data_model.importers import BaseImporter, InferenceImporter
|
|
8
|
-
from cognite.neat.core._data_model.models import ConceptualDataModel, PhysicalDataModel
|
|
9
|
-
from cognite.neat.core._data_model.models.conceptual._validation import ConceptualValidation
|
|
10
|
-
from cognite.neat.core._data_model.transformers import (
|
|
6
|
+
from cognite.neat.v0.core._client import NeatClient
|
|
7
|
+
from cognite.neat.v0.core._data_model.importers import BaseImporter, InferenceImporter
|
|
8
|
+
from cognite.neat.v0.core._data_model.models import ConceptualDataModel, PhysicalDataModel
|
|
9
|
+
from cognite.neat.v0.core._data_model.models.conceptual._validation import ConceptualValidation
|
|
10
|
+
from cognite.neat.v0.core._data_model.transformers import (
|
|
11
11
|
VerifiedDataModelTransformer,
|
|
12
12
|
)
|
|
13
|
-
from cognite.neat.core._instances.extractors import KnowledgeGraphExtractor
|
|
14
|
-
from cognite.neat.core._issues import IssueList
|
|
15
|
-
from cognite.neat.core._issues.warnings._models import ConversionToPhysicalModelImpossibleWarning
|
|
16
|
-
from cognite.neat.core._store import NeatDataModelStore, NeatInstanceStore
|
|
17
|
-
from cognite.neat.core._utils.upload import UploadResultList
|
|
13
|
+
from cognite.neat.v0.core._instances.extractors import KnowledgeGraphExtractor
|
|
14
|
+
from cognite.neat.v0.core._issues import IssueList
|
|
15
|
+
from cognite.neat.v0.core._issues.warnings._models import ConversionToPhysicalModelImpossibleWarning
|
|
16
|
+
from cognite.neat.v0.core._store import NeatDataModelStore, NeatInstanceStore
|
|
17
|
+
from cognite.neat.v0.core._utils.upload import UploadResultList
|
|
18
18
|
|
|
19
19
|
from .exceptions import NeatSessionError, _session_method_wrapper
|
|
20
20
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import warnings
|
|
2
2
|
|
|
3
|
-
from cognite.neat.core._data_model.models.entities._single_value import (
|
|
3
|
+
from cognite.neat.v0.core._data_model.models.entities._single_value import (
|
|
4
4
|
ConceptEntity,
|
|
5
5
|
ViewEntity,
|
|
6
6
|
)
|
|
7
|
-
from cognite.neat.core._data_model.transformers import (
|
|
7
|
+
from cognite.neat.v0.core._data_model.transformers import (
|
|
8
8
|
SubsetConceptualDataModel,
|
|
9
9
|
SubsetPhysicalDataModel,
|
|
10
10
|
)
|
|
11
|
-
from cognite.neat.core._issues._base import IssueList
|
|
12
|
-
from cognite.neat.session._experimental import ExperimentalFlags
|
|
11
|
+
from cognite.neat.v0.core._issues._base import IssueList
|
|
12
|
+
from cognite.neat.v0.session._experimental import ExperimentalFlags
|
|
13
13
|
|
|
14
14
|
from ._state import SessionState
|
|
15
15
|
from .exceptions import NeatSessionError, session_class_wrapper
|
|
@@ -3,23 +3,23 @@ from typing import Any, Literal
|
|
|
3
3
|
|
|
4
4
|
from cognite.client.data_classes.data_modeling import DataModelIdentifier
|
|
5
5
|
|
|
6
|
-
from cognite.neat.core._constants import BASE_MODEL
|
|
7
|
-
from cognite.neat.core._data_model._shared import ImportedDataModel
|
|
8
|
-
from cognite.neat.core._data_model.exporters import ExcelExporter
|
|
9
|
-
from cognite.neat.core._data_model.importers import ExcelImporter
|
|
10
|
-
from cognite.neat.core._data_model.models import UnverifiedConceptualDataModel
|
|
11
|
-
from cognite.neat.core._data_model.models._base_verified import RoleTypes
|
|
12
|
-
from cognite.neat.core._data_model.models.physical import PhysicalValidation
|
|
13
|
-
from cognite.neat.core._data_model.transformers import (
|
|
6
|
+
from cognite.neat.v0.core._constants import BASE_MODEL
|
|
7
|
+
from cognite.neat.v0.core._data_model._shared import ImportedDataModel
|
|
8
|
+
from cognite.neat.v0.core._data_model.exporters import ExcelExporter
|
|
9
|
+
from cognite.neat.v0.core._data_model.importers import ExcelImporter
|
|
10
|
+
from cognite.neat.v0.core._data_model.models import UnverifiedConceptualDataModel
|
|
11
|
+
from cognite.neat.v0.core._data_model.models._base_verified import RoleTypes
|
|
12
|
+
from cognite.neat.v0.core._data_model.models.physical import PhysicalValidation
|
|
13
|
+
from cognite.neat.v0.core._data_model.transformers import (
|
|
14
14
|
AddCogniteProperties,
|
|
15
15
|
IncludeReferenced,
|
|
16
16
|
ToDataProductModel,
|
|
17
17
|
ToEnterpriseModel,
|
|
18
18
|
VerifiedDataModelTransformer,
|
|
19
19
|
)
|
|
20
|
-
from cognite.neat.core._issues import IssueList, catch_issues
|
|
21
|
-
from cognite.neat.core._utils.reader import NeatReader, PathReader
|
|
22
|
-
from cognite.neat.session._experimental import ExperimentalFlags
|
|
20
|
+
from cognite.neat.v0.core._issues import IssueList, catch_issues
|
|
21
|
+
from cognite.neat.v0.core._utils.reader import NeatReader, PathReader
|
|
22
|
+
from cognite.neat.v0.session._experimental import ExperimentalFlags
|
|
23
23
|
|
|
24
24
|
from ._state import SessionState
|
|
25
25
|
from .exceptions import NeatSessionError, session_class_wrapper
|
|
@@ -6,18 +6,18 @@ from typing import Any, Literal, cast, overload
|
|
|
6
6
|
from cognite.client import data_modeling as dm
|
|
7
7
|
from cognite.client.data_classes.data_modeling import DataModelIdentifier
|
|
8
8
|
|
|
9
|
-
from cognite.neat.core._client._api_client import NeatClient
|
|
10
|
-
from cognite.neat.core._constants import COGNITE_MODELS
|
|
11
|
-
from cognite.neat.core._data_model import exporters
|
|
12
|
-
from cognite.neat.core._data_model._constants import PATTERNS
|
|
13
|
-
from cognite.neat.core._data_model._shared import VerifiedDataModel
|
|
14
|
-
from cognite.neat.core._data_model.importers import DMSImporter
|
|
15
|
-
from cognite.neat.core._data_model.models import ConceptualDataModel, PhysicalDataModel
|
|
16
|
-
from cognite.neat.core._data_model.models.physical import PhysicalMetadata
|
|
17
|
-
from cognite.neat.core._instances import loaders
|
|
18
|
-
from cognite.neat.core._issues import IssueList, NeatIssue, catch_issues
|
|
19
|
-
from cognite.neat.core._utils.upload import UploadResultList
|
|
20
|
-
from cognite.neat.session._experimental import ExperimentalFlags
|
|
9
|
+
from cognite.neat.v0.core._client._api_client import NeatClient
|
|
10
|
+
from cognite.neat.v0.core._constants import COGNITE_MODELS
|
|
11
|
+
from cognite.neat.v0.core._data_model import exporters
|
|
12
|
+
from cognite.neat.v0.core._data_model._constants import PATTERNS
|
|
13
|
+
from cognite.neat.v0.core._data_model._shared import VerifiedDataModel
|
|
14
|
+
from cognite.neat.v0.core._data_model.importers import DMSImporter
|
|
15
|
+
from cognite.neat.v0.core._data_model.models import ConceptualDataModel, PhysicalDataModel
|
|
16
|
+
from cognite.neat.v0.core._data_model.models.physical import PhysicalMetadata
|
|
17
|
+
from cognite.neat.v0.core._instances import loaders
|
|
18
|
+
from cognite.neat.v0.core._issues import IssueList, NeatIssue, catch_issues
|
|
19
|
+
from cognite.neat.v0.core._utils.upload import UploadResultList
|
|
20
|
+
from cognite.neat.v0.session._experimental import ExperimentalFlags
|
|
21
21
|
|
|
22
22
|
from ._state import SessionState
|
|
23
23
|
from .exceptions import NeatSessionError, session_class_wrapper
|
|
@@ -3,7 +3,7 @@ from typing import Literal, TypeVar, get_args
|
|
|
3
3
|
|
|
4
4
|
from rich.prompt import IntPrompt, Prompt
|
|
5
5
|
|
|
6
|
-
from cognite.neat.core._data_model._constants import PATTERNS
|
|
6
|
+
from cognite.neat.v0.core._data_model._constants import PATTERNS
|
|
7
7
|
|
|
8
8
|
RDFFileType = Literal["Ontology", "IMF Types", "Inference"]
|
|
9
9
|
NeatObjectType = Literal["Data Model", "Instances"]
|
|
@@ -13,7 +13,7 @@ from packaging.version import Version
|
|
|
13
13
|
from packaging.version import parse as parse_version
|
|
14
14
|
|
|
15
15
|
from cognite.neat._version import __engine__
|
|
16
|
-
from cognite.neat.core._issues.errors import NeatValueError
|
|
16
|
+
from cognite.neat.v0.core._issues.errors import NeatValueError
|
|
17
17
|
|
|
18
18
|
ENVIRONMENT_VARIABLE = "NEATENGINE"
|
|
19
19
|
PACKAGE_NAME = "neatengine"
|
|
@@ -3,11 +3,11 @@ import warnings
|
|
|
3
3
|
from collections.abc import Callable
|
|
4
4
|
from typing import Any, TypeVar
|
|
5
5
|
|
|
6
|
-
from cognite.neat.core._issues.errors import CDFMissingClientError, NeatImportError
|
|
7
|
-
from cognite.neat.core._issues.errors._external import OxigraphStorageLockedError
|
|
8
|
-
from cognite.neat.core._issues.errors._general import NeatValueError, WillExceedLimitError
|
|
9
|
-
from cognite.neat.plugins._issues import PluginError
|
|
10
|
-
from cognite.neat.session._experimental import ExperimentalFeatureWarning
|
|
6
|
+
from cognite.neat.v0.core._issues.errors import CDFMissingClientError, NeatImportError
|
|
7
|
+
from cognite.neat.v0.core._issues.errors._external import OxigraphStorageLockedError
|
|
8
|
+
from cognite.neat.v0.core._issues.errors._general import NeatValueError, WillExceedLimitError
|
|
9
|
+
from cognite.neat.v0.plugins._issues import PluginError
|
|
10
|
+
from cognite.neat.v0.session._experimental import ExperimentalFeatureWarning
|
|
11
11
|
|
|
12
12
|
from ._collector import _COLLECTOR
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cognite-neat
|
|
3
|
-
Version: 0.123.
|
|
3
|
+
Version: 0.123.35
|
|
4
4
|
Summary: Knowledge graph transformation
|
|
5
5
|
Project-URL: Documentation, https://cognite-neat.readthedocs-hosted.com/
|
|
6
6
|
Project-URL: Homepage, https://cognite-neat.readthedocs-hosted.com/
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
cognite/neat/__init__.py,sha256=Lo4DbjDOwnhCYUoAgPp5RG1fDdF7OlnomalTe7n1ydw,211
|
|
2
|
+
cognite/neat/_version.py,sha256=oyuRoPyhH1BP1A6GaXszY7yVBk58ETdF9YpPI-S9EPQ,47
|
|
3
|
+
cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
cognite/neat/_data_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
cognite/neat/_data_model/_constants.py,sha256=NGGvWHlQqhkkSBP_AqoofGYjNph3SiZX6QPINlMsy04,107
|
|
6
|
+
cognite/neat/_data_model/_identifiers.py,sha256=a0LcQ_h0NffxSKTCrzCDpYkrlaUTk-D_rfaQUh-BhWc,1921
|
|
7
|
+
cognite/neat/_data_model/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
cognite/neat/_data_model/models/dms/__init__.py,sha256=LwuPR4zOPinhT89mN0XEB38d5deWmLbGFs_RvENVQlc,212
|
|
9
|
+
cognite/neat/_data_model/models/dms/_base.py,sha256=R8SP3Zi9daTBqewYKGjuNEkrWc-j91f-6t34CN-9YJ0,719
|
|
10
|
+
cognite/neat/_data_model/models/dms/_constants.py,sha256=TpnOZ5Q1O_r2H5Ez3sAvaCH2s5DbnUm0qeRC-K1iPAQ,164
|
|
11
|
+
cognite/neat/_data_model/models/dms/_space.py,sha256=bLSTY5tTBnvS19kUacxM0p_c22lYY5FY9etofH1NNMc,1680
|
|
12
|
+
cognite/neat/_data_model/models/entities/__init__.py,sha256=yZSlicz9g2j4PCUW9h4KDwBhfApYb6jI0341HSWewT8,708
|
|
13
|
+
cognite/neat/_data_model/models/entities/_base.py,sha256=PREgBqc6DM9pLn3VXFWxPBMVK0sexl6s3twSHn9wsf0,3874
|
|
14
|
+
cognite/neat/_data_model/models/entities/_constants.py,sha256=P56zgsL2xqfegWOxEAyPm9qrZcxrjb1ZXqMG7cDmQxc,333
|
|
15
|
+
cognite/neat/_data_model/models/entities/_data_types.py,sha256=DfdEWGek7gODro-_0SiiInhPGwul4zn-ASACQfn8HUY,2838
|
|
16
|
+
cognite/neat/_data_model/models/entities/_identifiers.py,sha256=uBiK4ot3V0b_LGXuJ7bfha6AEcFI3p2letr1z2iSvig,1923
|
|
17
|
+
cognite/neat/_data_model/models/entities/_parser.py,sha256=ZLGw0cFV-B7JuaAUJ65Jbjf6o-vidz9_BZvilS6lAZw,6455
|
|
18
|
+
cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
cognite/neat/_utils/auxiliary.py,sha256=Cx-LP8dfN782R3iUcm--q26zdzQ0k_RFnVbJ0bwVZMI,1345
|
|
20
|
+
cognite/neat/_utils/useful_types.py,sha256=6Fpw_HlWFj8ZYjGPd0KzguBczuI8GFhj5wBceGsaeak,211
|
|
21
|
+
cognite/neat/_utils/http_client/__init__.py,sha256=gJBrOH1tIzEzLforHbeakYimTn4RlelyANps-jtpREI,894
|
|
22
|
+
cognite/neat/_utils/http_client/_client.py,sha256=2RVwTbbPFlQ8eJVLKNUXwnc4Yq_783PkY44zwr6LlT8,11509
|
|
23
|
+
cognite/neat/_utils/http_client/_config.py,sha256=C8IF1JoijmVMjA_FEMgAkiD1buEV1cY5Og3t-Ecyfmk,756
|
|
24
|
+
cognite/neat/_utils/http_client/_data_classes.py,sha256=EaIi1L3azqPdjR8H04EvDnCeupbX2rC7F0y8Y9ukap0,13605
|
|
25
|
+
cognite/neat/_utils/http_client/_tracker.py,sha256=EBBnd-JZ7nc_jYNFJokCHN2UZ9sx0McFLZvlceUYYic,1215
|
|
26
|
+
cognite/neat/v0/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
cognite/neat/v0/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
+
cognite/neat/v0/core/_config.py,sha256=WT1BS8uADcFvGoUYOOfwFOVq_VBl472TisdoA3wLick,280
|
|
29
|
+
cognite/neat/v0/core/_constants.py,sha256=J0avfxWcipJup-pv9MvFIaO8NC0heDaNAsmSPMFEP3U,9063
|
|
30
|
+
cognite/neat/v0/core/_shared.py,sha256=Ov59SWYboRRsncB_5V1ZC_BAoACfNLjo80vqE5Ru6wo,2325
|
|
31
|
+
cognite/neat/v0/core/_client/__init__.py,sha256=RQ7MwL8mwGqGHokRzsPqO3XStDzmI4-c12_gz1UPJ74,177
|
|
32
|
+
cognite/neat/v0/core/_client/_api_client.py,sha256=ZIipNVjd0kVts5Gh-PcV96DhA-RyT0v5EwZHa77hdXg,863
|
|
33
|
+
cognite/neat/v0/core/_client/testing.py,sha256=DyrwzhD5iPLF-Qz1ldBu4iFqVEKRLmWsyCNa7Aoy-4g,1332
|
|
34
|
+
cognite/neat/v0/core/_client/_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
cognite/neat/v0/core/_client/_api/data_modeling_loaders.py,sha256=kwjvOtkJQOkGYeQ_p76eGWuLrH8qGzTCsPpeWt7raPY,43845
|
|
36
|
+
cognite/neat/v0/core/_client/_api/neat_instances.py,sha256=WyCjQVV-puPCgdZ2faUmvmpgKGr7y0Xx9pazkXFSzdw,4820
|
|
37
|
+
cognite/neat/v0/core/_client/_api/schema.py,sha256=JyVNHTpVw_lJhcG5eNi87kBqyvB1Pcm0-6QeqXl3cMU,6982
|
|
38
|
+
cognite/neat/v0/core/_client/_api/statistics.py,sha256=Xu7KymQ5rGSoEng6_s5fVWv_TxqBIiPTYr0QNV_Ici8,3805
|
|
39
|
+
cognite/neat/v0/core/_client/data_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
cognite/neat/v0/core/_client/data_classes/data_modeling.py,sha256=RvpUp9ygd-yffQFJ7O2mQqMLDPIa-dmip5zPb8QVIiw,6672
|
|
41
|
+
cognite/neat/v0/core/_client/data_classes/neat_sequence.py,sha256=QZWSfWnwk6KlYJvsInco4Wdwc1U8DnOQKWmHebArbQY,10830
|
|
42
|
+
cognite/neat/v0/core/_client/data_classes/schema.py,sha256=YoLm0YQIhbYSFuSgC-GB3jgNy7qZw4WhT3A-jKkIVhk,25079
|
|
43
|
+
cognite/neat/v0/core/_client/data_classes/statistics.py,sha256=GU-u41cOTig0Y5pYhW5KqzCsuAUIX9tOmdizMEveYuw,4487
|
|
44
|
+
cognite/neat/v0/core/_data_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
cognite/neat/v0/core/_data_model/_constants.py,sha256=37lvnq3UZu4bPSzjRRThXJGdvaxmA7KJzWL0YysYBs8,6040
|
|
46
|
+
cognite/neat/v0/core/_data_model/_shared.py,sha256=ug6B_Vz7seg464xMMn0v3SKN_FNCNG1QeLqW-Bto-yA,2100
|
|
47
|
+
cognite/neat/v0/core/_data_model/analysis/__init__.py,sha256=v3hSfz7AEEqcmdjL71I09tP8Hl-gPZYOiDYMp_CW4vg,70
|
|
48
|
+
cognite/neat/v0/core/_data_model/analysis/_base.py,sha256=AfaKN-NlrXT5J-Tf3CuVzZHwbJXuJbdXwFRJ9uGI_Qg,24472
|
|
49
|
+
cognite/neat/v0/core/_data_model/catalog/__init__.py,sha256=zWG1-GONe8m05lV3gLAK_Xp7EJvcy6qLLl2B-RHHBjw,260
|
|
50
|
+
cognite/neat/v0/core/_data_model/catalog/classic_model.xlsx,sha256=YkocpkKypizjsWYwOdn5yzIz_BSl8T8SQLxgm4GIjLQ,15014
|
|
51
|
+
cognite/neat/v0/core/_data_model/catalog/conceptual-imf-data-model.xlsx,sha256=vrE5g8vBtsGpwJqygxG3t9I3x4SUAyQsi1vtWfZ8QW4,53682
|
|
52
|
+
cognite/neat/v0/core/_data_model/catalog/hello_world_pump.xlsx,sha256=E63t5U1PQLIoUfXp1mEuhuq8I2TGKovZlEfIhO5bevw,23322
|
|
53
|
+
cognite/neat/v0/core/_data_model/exporters/__init__.py,sha256=6UbiK-dzVUCtYo09s8ICe36BbqPCur6OWB71Lwiu50U,1207
|
|
54
|
+
cognite/neat/v0/core/_data_model/exporters/_base.py,sha256=pdtQDi5G89JVbHtGnvLHJDoujT1UVaCBw939Re1Gqv4,2412
|
|
55
|
+
cognite/neat/v0/core/_data_model/exporters/_data_model2dms.py,sha256=LdLGgR73n9k5hHiWUSdvDc0lmaEO8UVQYFTiaVWHQ-c,19918
|
|
56
|
+
cognite/neat/v0/core/_data_model/exporters/_data_model2excel.py,sha256=dT7ZHt57y3mca4TtCBnqMER0xlB7AyvivG0EZ2bGPzg,25484
|
|
57
|
+
cognite/neat/v0/core/_data_model/exporters/_data_model2instance_template.py,sha256=cmyQBlc1UM5l42g1N_F2K1sVu39ontsmA2bfXJO5muQ,6115
|
|
58
|
+
cognite/neat/v0/core/_data_model/exporters/_data_model2ontology.py,sha256=H12y7hZf9169xuVOnIIDnmvpNOegrTOESfG4-yoGpDw,22642
|
|
59
|
+
cognite/neat/v0/core/_data_model/exporters/_data_model2yaml.py,sha256=v7CgNVtVv4t0FXHPJM-HGkID0AqVDlwsQqUNjWqr_1U,3287
|
|
60
|
+
cognite/neat/v0/core/_data_model/importers/__init__.py,sha256=jkDKSGv5VdJgl44lmn7VQtD6-rqo09VFOr-tTB5Lfyc,1290
|
|
61
|
+
cognite/neat/v0/core/_data_model/importers/_base.py,sha256=SAC3nhJUBBl5PwnIs-bQvVam_0zEGjlOlNMvVOuJZzI,2028
|
|
62
|
+
cognite/neat/v0/core/_data_model/importers/_base_file_reader.py,sha256=OjjXb0IOlu69PXrhwH9EH4jbwNFwyKfYOQR0WnuwqO4,1627
|
|
63
|
+
cognite/neat/v0/core/_data_model/importers/_dict2data_model.py,sha256=CeDZNAO4W5JZmrboYtTfHnuU1UoXRI2nOUaasWmxfqM,4720
|
|
64
|
+
cognite/neat/v0/core/_data_model/importers/_dms2data_model.py,sha256=CuZk9BiD-y3n0sZGDxByGTK3frI0pSjIn6mr6djj7lY,29357
|
|
65
|
+
cognite/neat/v0/core/_data_model/importers/_graph2data_model.py,sha256=ILgrhror8PUpwKT9Q9Y8XO_rLSe4qPV4v7jvltjhzeM,13720
|
|
66
|
+
cognite/neat/v0/core/_data_model/importers/_spreadsheet2data_model.py,sha256=YySY5LxnyD6xwEmg4UqWvc9TfErHUDaJ0d-vM2IUVbc,12103
|
|
67
|
+
cognite/neat/v0/core/_data_model/importers/_rdf/__init__.py,sha256=1yOjV2PKCxwH7uCTXVZhSdxtn5etmFX40cksvwtKcZ8,199
|
|
68
|
+
cognite/neat/v0/core/_data_model/importers/_rdf/_base.py,sha256=Rv24TQQDZqAuFD8Qh0yRBiB7-JvoMVj3mGoPBm-xBFs,6052
|
|
69
|
+
cognite/neat/v0/core/_data_model/importers/_rdf/_inference2rdata_model.py,sha256=w8LsdkzgoTXN3LZyjEL_5grWZGlf7PPj8qOu370_K6M,28976
|
|
70
|
+
cognite/neat/v0/core/_data_model/importers/_rdf/_owl2data_model.py,sha256=JsL2gpVs4ntLyzncgRYic-4qSiDhXT-6xN3jTLo629U,4031
|
|
71
|
+
cognite/neat/v0/core/_data_model/importers/_rdf/_shared.py,sha256=maCBWNtZB63u_oNphebGiE9PQR9WEeZm84AHL8JJHkc,9795
|
|
72
|
+
cognite/neat/v0/core/_data_model/models/__init__.py,sha256=whWV0FrdUi01Du2mgan3_kZHQ9T2tGrGb2xRxoFDhNo,1258
|
|
73
|
+
cognite/neat/v0/core/_data_model/models/_base_unverified.py,sha256=1Wfbp-tJaEF6hd1bFdp2FhTgPkInf-1ZokuEoVJRPxQ,6842
|
|
74
|
+
cognite/neat/v0/core/_data_model/models/_base_verified.py,sha256=9EhRUEJ7ma-MnEFvXeQg6ew_gAcfLEapkckPX6mrlYQ,15142
|
|
75
|
+
cognite/neat/v0/core/_data_model/models/_import_contexts.py,sha256=_agCsWvq_ky_Np83UO1qRSlOodlBSLDFp29rB5Ty5hw,3439
|
|
76
|
+
cognite/neat/v0/core/_data_model/models/_types.py,sha256=A7lKYqGlEGRvXpsCdx-XGcFony0VeNCk9tRxeQpF6Po,5503
|
|
77
|
+
cognite/neat/v0/core/_data_model/models/data_types.py,sha256=Px1PeZmq23iaVWhOgJNA5VZAFrAym6dipbd3Fw4SnFU,10547
|
|
78
|
+
cognite/neat/v0/core/_data_model/models/conceptual/__init__.py,sha256=9A6myEV8s0-LqdXejaljqPj8S0pIpUL75rNdRDZzyR8,585
|
|
79
|
+
cognite/neat/v0/core/_data_model/models/conceptual/_unverified.py,sha256=UvqjGxVQsf_cNCYf726TXgnPplUy3iBuI-nUp0TclD0,6539
|
|
80
|
+
cognite/neat/v0/core/_data_model/models/conceptual/_validation.py,sha256=oaXRe1RfwsCQ_D5-IdXJf6yZ4Eug_PLu-bDklADYGV4,13895
|
|
81
|
+
cognite/neat/v0/core/_data_model/models/conceptual/_verified.py,sha256=8-H535sx-V11cNyuVOHImqWga8CsqcjPvXfwp0PclBQ,13743
|
|
82
|
+
cognite/neat/v0/core/_data_model/models/entities/__init__.py,sha256=qXrnTygYBgu4iE-ehNsHwmZ89pm9pTfU_Qe9rAq-ldg,1789
|
|
83
|
+
cognite/neat/v0/core/_data_model/models/entities/_constants.py,sha256=GXRzVfArwxF3C67VCkzy0JWTZRkRJUYXBQaaecrqcWc,351
|
|
84
|
+
cognite/neat/v0/core/_data_model/models/entities/_loaders.py,sha256=6UD1ik4juMh-yW9cEEnXuheV1vwopdM6d_BBpyUOUUY,5709
|
|
85
|
+
cognite/neat/v0/core/_data_model/models/entities/_multi_value.py,sha256=lkQ95o3Tvf7QImDq8d6KYfgYyq4_zQCqVBAZDOdK2TY,2798
|
|
86
|
+
cognite/neat/v0/core/_data_model/models/entities/_restrictions.py,sha256=wjA6GpfL1FGIjsf6Mo6Rj9Ht-gRnBvOkhj_waN2w2p4,8943
|
|
87
|
+
cognite/neat/v0/core/_data_model/models/entities/_single_value.py,sha256=LS4Zi5iT4WcCrDadwlxAa8cNvA6ucjFf3Mi0cEfbWQg,23972
|
|
88
|
+
cognite/neat/v0/core/_data_model/models/entities/_types.py,sha256=MqrCovqI_nvpMB4UqiUk4eUlKANvr8P7wr8k3y8lXlQ,2183
|
|
89
|
+
cognite/neat/v0/core/_data_model/models/entities/_wrapped.py,sha256=hOvdyxCNFgv1UdfaasviKnbEN4yN09Iip0ggQiaXgB4,7993
|
|
90
|
+
cognite/neat/v0/core/_data_model/models/mapping/__init__.py,sha256=T68Hf7rhiXa7b03h4RMwarAmkGnB-Bbhc1H07b2PyC4,100
|
|
91
|
+
cognite/neat/v0/core/_data_model/models/mapping/_classic2core.py,sha256=F0zusTh9pPR4z-RExPw3o4EMBSU2si6FJLuej2a3JzM,1430
|
|
92
|
+
cognite/neat/v0/core/_data_model/models/mapping/_classic2core.yaml,sha256=ei-nuivNWVW9HmvzDBKIPF6ZdgaMq64XHw_rKm0CMxg,22584
|
|
93
|
+
cognite/neat/v0/core/_data_model/models/physical/__init__.py,sha256=pH5ZF8jiW0A2w7VCSoHUsXxe894QFvTtgjxXNGVVaxk,990
|
|
94
|
+
cognite/neat/v0/core/_data_model/models/physical/_exporter.py,sha256=Q8a8bgbrT4CyCZiYT0R8wauMmgi9uLGCyfYKg_UByTo,30316
|
|
95
|
+
cognite/neat/v0/core/_data_model/models/physical/_unverified.py,sha256=7la586tAfj7a1_Ql8-Z_amf5mFeBXjAJ57bVdNggIrE,20140
|
|
96
|
+
cognite/neat/v0/core/_data_model/models/physical/_validation.py,sha256=I954pfdIA2OWAwQP7foyNa6FBJUVB3U-aqf6Likoqp0,41188
|
|
97
|
+
cognite/neat/v0/core/_data_model/models/physical/_verified.py,sha256=WU0HV8coZfRw-XIEVJZl9PxUaY0Y6q75fBoUF2MgwU4,26813
|
|
98
|
+
cognite/neat/v0/core/_data_model/transformers/__init__.py,sha256=N6yRBplAkrwwxoTAre_1BE_fdSZL5jihr7xTQjW3KnM,1876
|
|
99
|
+
cognite/neat/v0/core/_data_model/transformers/_base.py,sha256=3ZO73A3xIAFUAyH4U682CbPUmZLPUB8HpWGpYvVbRBQ,3145
|
|
100
|
+
cognite/neat/v0/core/_data_model/transformers/_converters.py,sha256=9Y8-94Vo0wfFjZvyumFzty-sNBo_1gt-FSHazjfb21E,111594
|
|
101
|
+
cognite/neat/v0/core/_data_model/transformers/_mapping.py,sha256=6R4QVblqivI1NvI0iSG5xC7fGHrdZcxqRg3c2Zx5o2E,19045
|
|
102
|
+
cognite/neat/v0/core/_data_model/transformers/_union_conceptual.py,sha256=Dp8Oe6i2duihwDWnGnfPEXRExyKIMiFM_XEcr0U9IbE,8867
|
|
103
|
+
cognite/neat/v0/core/_data_model/transformers/_verification.py,sha256=rIsmrmHvCgEddpPFIEXMMbRb9x9m3jCBi184g3JcrNA,5214
|
|
104
|
+
cognite/neat/v0/core/_instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
+
cognite/neat/v0/core/_instances/_shared.py,sha256=6avH6mtjxjHI7JDLkXwICxGvZwooGBr6APs1_w1To-A,940
|
|
106
|
+
cognite/neat/v0/core/_instances/_tracking/__init__.py,sha256=WOwsYieZtCW-iW15YkxUFrfKVVdLWdXHOGGStTwvE8A,91
|
|
107
|
+
cognite/neat/v0/core/_instances/_tracking/base.py,sha256=QNqZKpUMr9sUURSr3CDve8d5_93qnWIQ6BMQm1sLrmQ,829
|
|
108
|
+
cognite/neat/v0/core/_instances/_tracking/log.py,sha256=Q4qgx3Pu5LrPbk5hgW74MO2MSZmExCuxK6SgTxfXptY,936
|
|
109
|
+
cognite/neat/v0/core/_instances/examples/Knowledge-Graph-Nordic44-dirty.xml,sha256=ujJip6XBs5n8enVDPzNnuGkMBwv8g21tIr1sEVJpK5M,1439359
|
|
110
|
+
cognite/neat/v0/core/_instances/examples/Knowledge-Graph-Nordic44.xml,sha256=U2Ns-M4LRjT1fBkhmRj63ur7jDzlRtHK9yOLf_npZ_g,1437996
|
|
111
|
+
cognite/neat/v0/core/_instances/examples/__init__.py,sha256=yAjHVY3b5jOjmbW-iLbhvu7BG014TpGi3K4igkDqW5I,368
|
|
112
|
+
cognite/neat/v0/core/_instances/examples/skos-capturing-sheet-wind-topics.xlsx,sha256=CV_yK5ZSbYS_ktfIZUPD8Sevs47zpswLXQUDFkGE4Gw,45798
|
|
113
|
+
cognite/neat/v0/core/_instances/extractors/__init__.py,sha256=x8nnTw8io_9INZuiHzWe__yB6G9GUdjEeaWGAx_MzHk,2212
|
|
114
|
+
cognite/neat/v0/core/_instances/extractors/_base.py,sha256=dz0xAHDA0EUofRRxja9IKWoAXl3_vY4mnxO5We0LLDw,1974
|
|
115
|
+
cognite/neat/v0/core/_instances/extractors/_dict.py,sha256=7Qa0oLdKvUTBSshUK3g4T6n_6UE3ncaGBUXXzwveS_Q,4337
|
|
116
|
+
cognite/neat/v0/core/_instances/extractors/_dms.py,sha256=DFYSNd3wU-MCCDddojH6KX1wsx1gLz9fv34-WfnjwBE,13858
|
|
117
|
+
cognite/neat/v0/core/_instances/extractors/_dms_graph.py,sha256=VS8--8BH8cy9f1JUek_g3vIC4c6VkzBXhvPKqHydKjc,10228
|
|
118
|
+
cognite/neat/v0/core/_instances/extractors/_mock_graph_generator.py,sha256=3WxMWXXxQdth7Na6XMhNeAfqUKxK-8S8CEKAEPKBMDk,15954
|
|
119
|
+
cognite/neat/v0/core/_instances/extractors/_raw.py,sha256=2B6Qbpe0M4bb7l0P5-HvopfFmBp7cui54KxuPBgr52U,2523
|
|
120
|
+
cognite/neat/v0/core/_instances/extractors/_rdf_file.py,sha256=AALlpvXAj3HFnU7-JfrPnZ0brrYH02ytNjMkK6nEfKA,2977
|
|
121
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_assets.py,sha256=9WVFrAtUFAp_AAlb26Rtt2Axz9xsPQYetg7SKVrNCr4,1474
|
|
123
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_base.py,sha256=Ob_k3sJIfBuP1xwQUGENWvBSnSqglSQEfOo-KcAue1o,18534
|
|
124
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_classic.py,sha256=32uaNR9zWZol_LZ9nyFOONqv0f37ZSZBhC3U_xhBBqM,24465
|
|
125
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_data_sets.py,sha256=xRFv9pVFgIMTZ45E8teMC0Ynku_CuZdcZkVCbhPuPBk,1294
|
|
126
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_events.py,sha256=B8hRoMAg8GQvApjxals5PfPyjmdPO93U3nj_G7g0kDQ,1394
|
|
127
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_files.py,sha256=9lIleYyM3r0_CHteTEWboyknBeHYNtvgpNJuvS9UUU0,1894
|
|
128
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_labels.py,sha256=7guTZdGFT1r7ItE2VNgXwbBZ1y_005oB3fg1XbwT7WQ,2083
|
|
129
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_relationships.py,sha256=FT8O5hUkSvyB6N4rUeIgJlb42V3nUgW5DcGtNIAWwLQ,5404
|
|
130
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_sequences.py,sha256=D4VCggRZsunkh_9LJORjdjRi9OoDL0hqRZZxqpPuFog,11405
|
|
131
|
+
cognite/neat/v0/core/_instances/extractors/_classic_cdf/_timeseries.py,sha256=Py8MDcn82MJcsDPbeqDHMx4g2rQHmEOSHNe6gOi5gew,2044
|
|
132
|
+
cognite/neat/v0/core/_instances/loaders/__init__.py,sha256=qyOrKy0cJgYmgEuWVM-O1mpUemQE8EkfQYtJyEc8UVs,778
|
|
133
|
+
cognite/neat/v0/core/_instances/loaders/_base.py,sha256=FFwzZhkubMRz4zU0QhBQ1lqV-wxfS60_xBKP6u6UV68,4352
|
|
134
|
+
cognite/neat/v0/core/_instances/loaders/_rdf2dms.py,sha256=m-vvemC5j01pHhfLOPhZyZV5aiJRW674Q1a1r5mimbs,29406
|
|
135
|
+
cognite/neat/v0/core/_instances/loaders/_rdf_to_instance_space.py,sha256=T1nNzhY-G_ShNJ8IabPdzh3z-WvKyKjEvFBdaAMCnP0,11970
|
|
136
|
+
cognite/neat/v0/core/_instances/queries/__init__.py,sha256=W477LMyB4l6HIRbQhJoFgA_MUBwVCh2GBvtFeZu0AUA,53
|
|
137
|
+
cognite/neat/v0/core/_instances/queries/_base.py,sha256=APevHeeWQDEoOQ0MlBtVlPf9hbZukVkI5fOvt5oPJCE,543
|
|
138
|
+
cognite/neat/v0/core/_instances/queries/_queries.py,sha256=4BidSQXhdZYZ6_kyG7jMJ2iG0UtSrbQxfmwPM7V167A,466
|
|
139
|
+
cognite/neat/v0/core/_instances/queries/_select.py,sha256=nVhXGA8oSVNfhXo7p2poM40ATbQ2wXa6TFeJiJl7Nto,19105
|
|
140
|
+
cognite/neat/v0/core/_instances/queries/_update.py,sha256=WJmh0hGoKT4pbbWeED6udFAXiv_qFPd3v9tnZLORcNk,1293
|
|
141
|
+
cognite/neat/v0/core/_instances/transformers/__init__.py,sha256=YzC1Z8BuT77NwagWX4Z-F9R9BARLSS7zM4bCdxBbqKg,1761
|
|
142
|
+
cognite/neat/v0/core/_instances/transformers/_base.py,sha256=a8TVhgYGdt7Mj5-omT6gxOHeGvYnMd9vJCty6p7ctx4,4707
|
|
143
|
+
cognite/neat/v0/core/_instances/transformers/_classic_cdf.py,sha256=FWgwB1jA3A4yTQ3ssbjboSOFs95E3qFNEW1Cd5z7168,25346
|
|
144
|
+
cognite/neat/v0/core/_instances/transformers/_prune_graph.py,sha256=os2JCX5R0jQ9MiFlDrjZ5RFKVLnuVFf5w5ua1GHZgC8,12647
|
|
145
|
+
cognite/neat/v0/core/_instances/transformers/_rdfpath.py,sha256=m6kQB3ytoj4tdfP8E0bW6luW7guFZvYmycEJhIoA8xs,3164
|
|
146
|
+
cognite/neat/v0/core/_instances/transformers/_value_type.py,sha256=a4zZa0DNsBFxwQw789hc3Lp5Cm36Ko1foH22czKuHic,15832
|
|
147
|
+
cognite/neat/v0/core/_issues/__init__.py,sha256=NQ-PN3fqp-hBPlpG2AZEND4cDn3_3UXAPfhLNtF5mtc,457
|
|
148
|
+
cognite/neat/v0/core/_issues/_base.py,sha256=A5wgSKOMkL7Erk5fuI1VrfS9khYokVtssITpSjQ4xqE,12018
|
|
149
|
+
cognite/neat/v0/core/_issues/_contextmanagers.py,sha256=lV-EpSFW3Ft4DJ7KLQwhJpBX7B9bBUz4_5xkpFesoxg,1624
|
|
150
|
+
cognite/neat/v0/core/_issues/_factory.py,sha256=G4sO1Pzf7EUiVD8_X8d8-sErkugjYfihPUrtNjYvvuU,3088
|
|
151
|
+
cognite/neat/v0/core/_issues/formatters.py,sha256=k2h_6wHW0ve52gXeuRoEcGwrxqqSe5sYFa_HycPiqW8,3323
|
|
152
|
+
cognite/neat/v0/core/_issues/errors/__init__.py,sha256=C6M92d9jphL18BIgbl8AQzUgL92e4a6Fw0yLrkp9Trg,2495
|
|
153
|
+
cognite/neat/v0/core/_issues/errors/_external.py,sha256=stUcYjnwQwcoxTg9r1OAQSKhTGOamZrQdAuc37JE1w4,2357
|
|
154
|
+
cognite/neat/v0/core/_issues/errors/_general.py,sha256=Ri9ibVAwkQ7jVbiS0EgM0w8kOMW8I91ymrsUhDM2rPo,1394
|
|
155
|
+
cognite/neat/v0/core/_issues/errors/_properties.py,sha256=P6imLeVe6TJItUIvKJ0NfJz7Os1J8Ecv-KWW2i4OLNU,2927
|
|
156
|
+
cognite/neat/v0/core/_issues/errors/_resources.py,sha256=S5qVVP66ClP5s0SWIHZbKm-zdfzl21QJ-9rIDRxs2ac,4008
|
|
157
|
+
cognite/neat/v0/core/_issues/errors/_wrapper.py,sha256=BUBypBtkOwu7AGCLEghAkKB9SvEwDnlqsYzr7nZ_zRw,2539
|
|
158
|
+
cognite/neat/v0/core/_issues/warnings/__init__.py,sha256=woWVeVBIwA1pHCX961ZVhhJBgtrFtCUEBPHDIRV8iYg,3266
|
|
159
|
+
cognite/neat/v0/core/_issues/warnings/_external.py,sha256=8fUtt2JM7pgWHCvGUpIN0FryK9MQuL0sSv0xZ2eagvU,1327
|
|
160
|
+
cognite/neat/v0/core/_issues/warnings/_general.py,sha256=DnA3Ug5odh4qFcw_6vwbUCdBbKXSXpXmUJfpviaVUVA,975
|
|
161
|
+
cognite/neat/v0/core/_issues/warnings/_models.py,sha256=kS5ssMEKVuAvQzGeydpKEYF1zZ4NtfloZ2DEi62m_1E,5801
|
|
162
|
+
cognite/neat/v0/core/_issues/warnings/_properties.py,sha256=s_Yn17JLvzlBg-hd85_QfgCX9KbUSz11lpaTo0FTUM4,3813
|
|
163
|
+
cognite/neat/v0/core/_issues/warnings/_resources.py,sha256=L4iTuVYgfwcaCRTbTCVoorN_ZHUugKLvfvzkeF7WR5A,3581
|
|
164
|
+
cognite/neat/v0/core/_issues/warnings/user_modeling.py,sha256=neM9IJzLGWFcBiuo5p5CLFglXjrUXR61FNqvupNw7Y0,4147
|
|
165
|
+
cognite/neat/v0/core/_store/__init__.py,sha256=wpsF8xjIQ5V21NOh45XQV813n_EzgyPOt0VVinYjnDI,140
|
|
166
|
+
cognite/neat/v0/core/_store/_data_model.py,sha256=09JlHEkJVEPHCju8ixRUUsvRcZb0UrDE7wevB7tq4PI,19682
|
|
167
|
+
cognite/neat/v0/core/_store/_instance.py,sha256=kFiodxzqLu233TWz3HAa-XTKIKndN9WRAEUNnomQhaI,17434
|
|
168
|
+
cognite/neat/v0/core/_store/_provenance.py,sha256=Q96wkVXRovO_uTlNvwCAOl6pAoWItTgFq1F79L_FqBk,7335
|
|
169
|
+
cognite/neat/v0/core/_store/exceptions.py,sha256=dTaBSt7IV7XWtS3EsE8lBX1Dv3tfWX1nIEgGHkluy3s,1668
|
|
170
|
+
cognite/neat/v0/core/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
+
cognite/neat/v0/core/_utils/auth.py,sha256=CAAmIYT_Cy458XXsx10ggPhatPbL6sGt90C3DpJAog0,14766
|
|
172
|
+
cognite/neat/v0/core/_utils/auxiliary.py,sha256=lflbBC_cxO3PyQGvnwIGDZZIOSGNNyNrbawaFe8tNys,7115
|
|
173
|
+
cognite/neat/v0/core/_utils/collection_.py,sha256=hYyvje47AAvY7sCmZy0NouX1OMVKLhJ6qAzwg0DIOhg,2382
|
|
174
|
+
cognite/neat/v0/core/_utils/graph_transformations_report.py,sha256=-V0LM9BI_bHT6PTTG9Qby4PGtFkYU3cxtF0cz8KoKek,1238
|
|
175
|
+
cognite/neat/v0/core/_utils/io_.py,sha256=D2Mg8sOxfBoDg3fC0jBzaxO3vkXmr0QvZSgYIv6xRkM,386
|
|
176
|
+
cognite/neat/v0/core/_utils/rdf_.py,sha256=ccnKqLPyKyZ44KknsN3kpCf-DkjSHSqX2KMreFN4Dlc,11226
|
|
177
|
+
cognite/neat/v0/core/_utils/spreadsheet.py,sha256=wQWL8XJ8cRxWi_Y4oiDyEB2w1DICU9h6OvFCPLYZipg,5954
|
|
178
|
+
cognite/neat/v0/core/_utils/tarjan.py,sha256=IZvwaIITryGVNbo9Bv5EA9_sW3DyfUNAe7uYyPOCL0g,1357
|
|
179
|
+
cognite/neat/v0/core/_utils/text.py,sha256=3Dkz_lmGOHHJ_LKnd1GM_wrGHUWXsXse0Us2BAW5fUI,8522
|
|
180
|
+
cognite/neat/v0/core/_utils/time_.py,sha256=7ayUm0OWZm1JDmy32E4ip8WRr2o0GLwrHwJA8sJ43Z4,357
|
|
181
|
+
cognite/neat/v0/core/_utils/upload.py,sha256=nRhq8G63avFZW-o9HCsepXCk1qFmFfm0EpEyrxfRCBA,5869
|
|
182
|
+
cognite/neat/v0/core/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
|
|
183
|
+
cognite/neat/v0/core/_utils/reader/__init__.py,sha256=fPkrNB_9hLB7CyHTCFV_xEbIfOMqUQzNly5JN33-QfM,146
|
|
184
|
+
cognite/neat/v0/core/_utils/reader/_base.py,sha256=baZVNEFv7F2xheQOy34K0sBjsHQTUT6se3kZDrBsVXA,5420
|
|
185
|
+
cognite/neat/v0/plugins/__init__.py,sha256=acsDoiw0ztT2T-RyUIPtr8rfWpQBj4M6LmSEuAJcQjQ,209
|
|
186
|
+
cognite/neat/v0/plugins/_base.py,sha256=zYy9b7LeDrijRHWzj_ASv4WlsSjo12Msu3DIyBW2zT8,255
|
|
187
|
+
cognite/neat/v0/plugins/_data_model.py,sha256=MSfb9Gtz-whsY3-usMaPYBxpc9-C5qN3gWdN5ca6wDI,2088
|
|
188
|
+
cognite/neat/v0/plugins/_issues.py,sha256=9lbLlxgPSVHjirOhEHyNQ0Pf3NH82Psj_DuTCcJDQQQ,943
|
|
189
|
+
cognite/neat/v0/plugins/_manager.py,sha256=Pmaw5yjobMJ64OYaODX3FTaH1Q7hW9rzbz0A8wyIZcI,3683
|
|
190
|
+
cognite/neat/v0/session/__init__.py,sha256=fxQ5URVlUnmEGYyB8Baw7IDq-uYacqkigbc4b-Pr9Fw,58
|
|
191
|
+
cognite/neat/v0/session/_base.py,sha256=cLVrNEIizWKdPb2LRtXYxQRQczAnyHXJ46Ak1P4X03k,12967
|
|
192
|
+
cognite/neat/v0/session/_collector.py,sha256=YCPeapbxBK-vAFMq7ekLy0Pn796M9AM7B8hxFtgsOUU,4236
|
|
193
|
+
cognite/neat/v0/session/_drop.py,sha256=8C9WDJglaO1lpej4jihOMTtEXjQn8wKL8JjZ1yxAvbE,4248
|
|
194
|
+
cognite/neat/v0/session/_experimental.py,sha256=0peZPZ9JpmzQE05wHbng2tWmPPLLTAVfWZEEUhdnI6o,1274
|
|
195
|
+
cognite/neat/v0/session/_explore.py,sha256=YQF8ubCm-dkpO5WuVfYGTkQjhF_XKHFcG6Ko5jwz-R0,1605
|
|
196
|
+
cognite/neat/v0/session/_fix.py,sha256=PrXfrSR2DMkKD_k3MajaaziKJaYdIp9wr5aHvra66V4,925
|
|
197
|
+
cognite/neat/v0/session/_inspect.py,sha256=6xC-tLJfP7sbSQpIlpPmCQWklGxK_rEXBE41jtuUQ-s,10184
|
|
198
|
+
cognite/neat/v0/session/_mapping.py,sha256=9lQFnB0wpizo4ySIEDMWh183qpHh8TlVL7uOgAtJUxE,2904
|
|
199
|
+
cognite/neat/v0/session/_plugin.py,sha256=TqEeUYDiZmOyl33h44J5OlqkH7VzgGi63nJFidpBV4M,2235
|
|
200
|
+
cognite/neat/v0/session/_prepare.py,sha256=HFdDmBnYRpaCm90s_A0byHLJIZwKrt2ve6i3EyN0V6w,12802
|
|
201
|
+
cognite/neat/v0/session/_read.py,sha256=2pdlWa-OHQ4j2gRKNTeBzWBOipDPnznnqyys-yzUq2s,34658
|
|
202
|
+
cognite/neat/v0/session/_set.py,sha256=qFi3YrYBd09MfHVJ2Ak0PCGigTAhGttfnA2iWSYwUt4,4617
|
|
203
|
+
cognite/neat/v0/session/_show.py,sha256=O6Vcp5BNWfp2hpWuyqsdFhN0WAl29ot-QrC5iKBGe5Y,10758
|
|
204
|
+
cognite/neat/v0/session/_state.py,sha256=2t1DBybamq67CuNZo_a1AQfDfYWnKS-MATFFuJf_h4M,7454
|
|
205
|
+
cognite/neat/v0/session/_subset.py,sha256=PFDK5mHMeeMfkKgCXPSJSs80dhEK4cIHtem8Z-upFLM,2860
|
|
206
|
+
cognite/neat/v0/session/_template.py,sha256=Mvyj5l-eOkRs-IAMsCKFWiAxxaw7275iL_2m2QrqW5c,9941
|
|
207
|
+
cognite/neat/v0/session/_to.py,sha256=LEyk9ehOUWAVmo2erMr6P8ngbKSstu05L8_8ZGvCLSs,19435
|
|
208
|
+
cognite/neat/v0/session/_wizard.py,sha256=_BfDh8uY0ND0ewajucrVzAJ2Rbn9ikIle7Ol6DS-N8E,1489
|
|
209
|
+
cognite/neat/v0/session/exceptions.py,sha256=iDDWsvEGp0PmINuaFne8k4nWmaMHR14p18TQYcIsCSo,3490
|
|
210
|
+
cognite/neat/v0/session/_state/README.md,sha256=o6N7EL98lgyWffw8IoEUf2KG5uSKveD5__TW45YzVjA,902
|
|
211
|
+
cognite/neat/v0/session/engine/__init__.py,sha256=D3MxUorEs6-NtgoICqtZ8PISQrjrr4dvca6n48bu_bI,120
|
|
212
|
+
cognite/neat/v0/session/engine/_import.py,sha256=1QxA2_EK613lXYAHKQbZyw2yjo5P9XuiX4Z6_6-WMNQ,169
|
|
213
|
+
cognite/neat/v0/session/engine/_interface.py,sha256=3W-cYr493c_mW3P5O6MKN1xEQg3cA7NHR_ev3zdF9Vk,533
|
|
214
|
+
cognite/neat/v0/session/engine/_load.py,sha256=u0x7vuQCRoNcPt25KJBJRn8sJabonYK4vtSZpiTdP4k,5201
|
|
215
|
+
cognite_neat-0.123.35.dist-info/METADATA,sha256=6euHGIZPibwW7EYiWDy5Y829gpbSJyKlt7xjQDD5UkI,9195
|
|
216
|
+
cognite_neat-0.123.35.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
217
|
+
cognite_neat-0.123.35.dist-info/licenses/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
|
|
218
|
+
cognite_neat-0.123.35.dist-info/RECORD,,
|
cognite/neat/plugins/__init__.py
DELETED
|
File without changes
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
from pathlib import Path
|
|
2
|
-
from typing import Any
|
|
3
|
-
|
|
4
|
-
from cognite.neat.core._data_model.importers._base import BaseImporter
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class DataModelImporterPlugin:
|
|
8
|
-
"""This class is used an interface for data model import plugins.
|
|
9
|
-
Any plugin that is used for importing data models should inherit from this class.
|
|
10
|
-
It is expected to implement the `configure` method which returns a configured importer.
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
def configure(self, io: str | Path | None, **kwargs: Any) -> BaseImporter:
|
|
14
|
-
"""Return a configure plugin for data model import.
|
|
15
|
-
|
|
16
|
-
Args:
|
|
17
|
-
io (str | Path | None): The input/output interface for the plugin.
|
|
18
|
-
**kwargs (Any): Additional keyword arguments for configuration.
|
|
19
|
-
|
|
20
|
-
Returns:
|
|
21
|
-
BaseImporter: A configured instance of the BaseImporter.
|
|
22
|
-
|
|
23
|
-
!!! note "Returns"
|
|
24
|
-
The method must return an instance of `BaseImporter` or its subclasses
|
|
25
|
-
meaning it must implement the `BaseImporter` interface.
|
|
26
|
-
"""
|
|
27
|
-
|
|
28
|
-
raise NotImplementedError()
|