cognite-neat 0.128.1__py3-none-any.whl → 1.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cognite/neat/__init__.py +4 -3
- cognite/neat/_data_model/_identifiers.py +1 -1
- cognite/neat/_data_model/importers/_table_importer/data_classes.py +1 -1
- cognite/neat/_data_model/models/conceptual/_data_model.py +1 -1
- cognite/neat/_data_model/models/dms/_space.py +1 -1
- cognite/neat/_data_model/models/entities/_identifiers.py +1 -1
- cognite/neat/_session/_session.py +4 -4
- cognite/neat/_session/_usage_analytics/_collector.py +2 -2
- cognite/neat/{v0 → _v0}/core/_client/_api/data_modeling_loaders.py +6 -6
- cognite/neat/{v0 → _v0}/core/_client/_api/neat_instances.py +5 -5
- cognite/neat/{v0 → _v0}/core/_client/_api/schema.py +5 -5
- cognite/neat/{v0 → _v0}/core/_client/_api/statistics.py +3 -3
- cognite/neat/{v0 → _v0}/core/_client/_api_client.py +1 -1
- cognite/neat/{v0 → _v0}/core/_client/data_classes/schema.py +4 -4
- cognite/neat/{v0 → _v0}/core/_client/testing.py +1 -1
- cognite/neat/{v0 → _v0}/core/_constants.py +3 -3
- cognite/neat/{v0 → _v0}/core/_data_model/_shared.py +4 -4
- cognite/neat/{v0 → _v0}/core/_data_model/analysis/_base.py +8 -8
- cognite/neat/{v0 → _v0}/core/_data_model/exporters/_base.py +7 -7
- cognite/neat/{v0 → _v0}/core/_data_model/exporters/_data_model2dms.py +9 -9
- cognite/neat/{v0 → _v0}/core/_data_model/exporters/_data_model2excel.py +9 -9
- cognite/neat/{v0 → _v0}/core/_data_model/exporters/_data_model2instance_template.py +4 -4
- cognite/neat/{v0 → _v0}/core/_data_model/exporters/_data_model2semantic_model.py +9 -9
- cognite/neat/{v0 → _v0}/core/_data_model/exporters/_data_model2yaml.py +1 -1
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_base.py +5 -5
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_base_file_reader.py +2 -2
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_dict2data_model.py +5 -5
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_dms2data_model.py +13 -13
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_graph2data_model.py +12 -12
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_rdf/_base.py +12 -12
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_rdf/_inference2rdata_model.py +14 -14
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_rdf/_owl2data_model.py +2 -2
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_rdf/_shared.py +7 -7
- cognite/neat/{v0 → _v0}/core/_data_model/importers/_spreadsheet2data_model.py +10 -10
- cognite/neat/{v0 → _v0}/core/_data_model/models/__init__.py +3 -3
- cognite/neat/{v0 → _v0}/core/_data_model/models/_base_verified.py +5 -5
- cognite/neat/{v0 → _v0}/core/_data_model/models/_import_contexts.py +1 -1
- cognite/neat/{v0 → _v0}/core/_data_model/models/_types.py +5 -5
- cognite/neat/{v0 → _v0}/core/_data_model/models/conceptual/_unverified.py +5 -5
- cognite/neat/{v0 → _v0}/core/_data_model/models/conceptual/_validation.py +12 -12
- cognite/neat/{v0 → _v0}/core/_data_model/models/conceptual/_verified.py +9 -9
- cognite/neat/{v0 → _v0}/core/_data_model/models/data_types.py +3 -3
- cognite/neat/{v0 → _v0}/core/_data_model/models/entities/_loaders.py +2 -2
- cognite/neat/{v0 → _v0}/core/_data_model/models/entities/_multi_value.py +2 -2
- cognite/neat/{v0 → _v0}/core/_data_model/models/entities/_restrictions.py +6 -6
- cognite/neat/{v0 → _v0}/core/_data_model/models/entities/_single_value.py +3 -3
- cognite/neat/{v0 → _v0}/core/_data_model/models/mapping/_classic2core.py +5 -5
- cognite/neat/{v0 → _v0}/core/_data_model/models/physical/__init__.py +1 -1
- cognite/neat/{v0 → _v0}/core/_data_model/models/physical/_exporter.py +8 -8
- cognite/neat/{v0 → _v0}/core/_data_model/models/physical/_unverified.py +8 -8
- cognite/neat/{v0 → _v0}/core/_data_model/models/physical/_validation.py +16 -16
- cognite/neat/{v0 → _v0}/core/_data_model/models/physical/_verified.py +11 -11
- cognite/neat/{v0 → _v0}/core/_data_model/transformers/_base.py +4 -4
- cognite/neat/{v0 → _v0}/core/_data_model/transformers/_converters.py +26 -26
- cognite/neat/{v0 → _v0}/core/_data_model/transformers/_mapping.py +7 -7
- cognite/neat/{v0 → _v0}/core/_data_model/transformers/_union_conceptual.py +5 -5
- cognite/neat/{v0 → _v0}/core/_data_model/transformers/_verification.py +7 -7
- cognite/neat/{v0 → _v0}/core/_instances/_tracking/base.py +1 -1
- cognite/neat/{v0 → _v0}/core/_instances/_tracking/log.py +1 -1
- cognite/neat/{v0 → _v0}/core/_instances/extractors/__init__.py +3 -2
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_base.py +6 -6
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_base.py +7 -7
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_classic.py +12 -12
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_relationships.py +3 -3
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_sequences.py +2 -2
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_dict.py +2 -2
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_dms.py +6 -6
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_dms_graph.py +11 -11
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_mock_graph_generator.py +10 -10
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_raw.py +3 -3
- cognite/neat/{v0 → _v0}/core/_instances/extractors/_rdf_file.py +7 -7
- cognite/neat/{v0 → _v0}/core/_instances/loaders/_base.py +5 -5
- cognite/neat/{v0 → _v0}/core/_instances/loaders/_rdf2dms.py +17 -17
- cognite/neat/{v0 → _v0}/core/_instances/loaders/_rdf_to_instance_space.py +11 -11
- cognite/neat/{v0 → _v0}/core/_instances/queries/_select.py +3 -3
- cognite/neat/{v0 → _v0}/core/_instances/queries/_update.py +1 -1
- cognite/neat/{v0 → _v0}/core/_instances/transformers/_base.py +4 -4
- cognite/neat/{v0 → _v0}/core/_instances/transformers/_classic_cdf.py +6 -6
- cognite/neat/{v0 → _v0}/core/_instances/transformers/_prune_graph.py +4 -4
- cognite/neat/{v0 → _v0}/core/_instances/transformers/_rdfpath.py +1 -1
- cognite/neat/{v0 → _v0}/core/_instances/transformers/_value_type.py +4 -4
- cognite/neat/{v0 → _v0}/core/_issues/_base.py +5 -5
- cognite/neat/{v0 → _v0}/core/_issues/_contextmanagers.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/_factory.py +3 -3
- cognite/neat/{v0 → _v0}/core/_issues/errors/__init__.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/errors/_external.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/errors/_general.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/errors/_properties.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/errors/_resources.py +2 -2
- cognite/neat/{v0 → _v0}/core/_issues/errors/_wrapper.py +2 -2
- cognite/neat/{v0 → _v0}/core/_issues/warnings/__init__.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/warnings/_external.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/warnings/_general.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/warnings/_models.py +2 -2
- cognite/neat/{v0 → _v0}/core/_issues/warnings/_properties.py +2 -2
- cognite/neat/{v0 → _v0}/core/_issues/warnings/_resources.py +1 -1
- cognite/neat/{v0 → _v0}/core/_issues/warnings/user_modeling.py +1 -1
- cognite/neat/{v0 → _v0}/core/_store/_data_model.py +12 -12
- cognite/neat/{v0 → _v0}/core/_store/_instance.py +11 -11
- cognite/neat/{v0 → _v0}/core/_store/_provenance.py +3 -3
- cognite/neat/{v0 → _v0}/core/_store/exceptions.py +4 -4
- cognite/neat/{v0 → _v0}/core/_utils/auth.py +1 -1
- cognite/neat/{v0 → _v0}/core/_utils/auxiliary.py +1 -1
- cognite/neat/{v0 → _v0}/core/_utils/collection_.py +2 -2
- cognite/neat/{v0 → _v0}/core/_utils/graph_transformations_report.py +1 -1
- cognite/neat/{v0 → _v0}/core/_utils/rdf_.py +1 -1
- cognite/neat/{v0 → _v0}/core/_utils/reader/_base.py +1 -1
- cognite/neat/{v0 → _v0}/core/_utils/spreadsheet.py +1 -1
- cognite/neat/{v0 → _v0}/core/_utils/text.py +1 -1
- cognite/neat/{v0 → _v0}/core/_utils/upload.py +3 -3
- cognite/neat/{v0/session → _v0}/engine/_load.py +1 -1
- cognite/neat/{v0 → _v0}/plugins/_data_model.py +2 -2
- cognite/neat/{v0 → _v0}/plugins/_issues.py +1 -1
- cognite/neat/{v0 → _v0}/plugins/_manager.py +2 -2
- cognite/neat/{v0 → _v0}/session/_base.py +11 -11
- cognite/neat/{v0 → _v0}/session/_collector.py +1 -1
- cognite/neat/{v0 → _v0}/session/_diff.py +1 -1
- cognite/neat/{v0 → _v0}/session/_drop.py +3 -3
- cognite/neat/{v0 → _v0}/session/_explore.py +2 -2
- cognite/neat/{v0 → _v0}/session/_fix.py +2 -2
- cognite/neat/{v0 → _v0}/session/_inspect.py +3 -3
- cognite/neat/{v0 → _v0}/session/_mapping.py +3 -3
- cognite/neat/{v0 → _v0}/session/_plugin.py +4 -4
- cognite/neat/{v0 → _v0}/session/_prepare.py +8 -8
- cognite/neat/{v0 → _v0}/session/_read.py +19 -19
- cognite/neat/{v0 → _v0}/session/_set.py +8 -8
- cognite/neat/{v0 → _v0}/session/_show.py +5 -5
- cognite/neat/{v0 → _v0}/session/_state.py +10 -10
- cognite/neat/{v0 → _v0}/session/_subset.py +4 -4
- cognite/neat/{v0 → _v0}/session/_template.py +11 -11
- cognite/neat/{v0 → _v0}/session/_to.py +12 -12
- cognite/neat/{v0 → _v0}/session/_wizard.py +1 -1
- cognite/neat/{v0 → _v0}/session/exceptions.py +5 -5
- cognite/neat/_version.py +1 -1
- cognite/neat/legacy.py +6 -0
- cognite_neat-1.0.1.dist-info/METADATA +111 -0
- cognite_neat-1.0.1.dist-info/RECORD +318 -0
- cognite/neat/_session/_opt.py +0 -35
- cognite/neat/v1.py +0 -4
- cognite_neat-0.128.1.dist-info/METADATA +0 -145
- cognite_neat-0.128.1.dist-info/RECORD +0 -319
- /cognite/neat/{v0 → _v0}/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_client/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_client/_api/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_client/data_classes/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_client/data_classes/data_modeling.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_client/data_classes/neat_sequence.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_client/data_classes/statistics.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_config.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/_constants.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/analysis/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/catalog/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/catalog/classic_model.xlsx +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/catalog/conceptual-imf-data-model.xlsx +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/catalog/hello_world_pump.xlsx +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/exporters/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/importers/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/importers/_rdf/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/models/_base_unverified.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/models/conceptual/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/models/entities/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/models/entities/_constants.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/models/entities/_types.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/models/entities/_wrapped.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/models/mapping/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/models/mapping/_classic2core.yaml +0 -0
- /cognite/neat/{v0 → _v0}/core/_data_model/transformers/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/_shared.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/_tracking/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/examples/Knowledge-Graph-Nordic44-dirty.xml +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/examples/Knowledge-Graph-Nordic44.xml +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/examples/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/examples/skos-capturing-sheet-wind-topics.xlsx +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_assets.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_data_sets.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_events.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_files.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_labels.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/extractors/_classic_cdf/_timeseries.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/loaders/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/queries/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/queries/_base.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/queries/_queries.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_instances/transformers/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_issues/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_issues/formatters.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_shared.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_store/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_utils/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_utils/io_.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_utils/reader/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_utils/tarjan.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_utils/time_.py +0 -0
- /cognite/neat/{v0 → _v0}/core/_utils/xml_.py +0 -0
- /cognite/neat/{v0/session → _v0}/engine/__init__.py +0 -0
- /cognite/neat/{v0/session → _v0}/engine/_import.py +0 -0
- /cognite/neat/{v0/session → _v0}/engine/_interface.py +0 -0
- /cognite/neat/{v0 → _v0}/plugins/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/plugins/_base.py +0 -0
- /cognite/neat/{v0 → _v0}/session/__init__.py +0 -0
- /cognite/neat/{v0 → _v0}/session/_experimental.py +0 -0
- /cognite/neat/{v0 → _v0}/session/_state/README.md +0 -0
- {cognite_neat-0.128.1.dist-info → cognite_neat-1.0.1.dist-info}/WHEEL +0 -0
- {cognite_neat-0.128.1.dist-info → cognite_neat-1.0.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cognite-neat
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Knowledge graph transformation
|
|
5
|
+
Project-URL: Documentation, https://cognite-neat.readthedocs-hosted.com/
|
|
6
|
+
Project-URL: Homepage, https://cognite-neat.readthedocs-hosted.com/
|
|
7
|
+
Project-URL: GitHub, https://github.com/cognitedata/neat
|
|
8
|
+
Project-URL: Changelog, https://github.com/cognitedata/neat/releases
|
|
9
|
+
Author-email: Nikola Vasiljevic <nikola.vasiljevic@cognite.com>, Anders Albert <anders.albert@cognite.com>
|
|
10
|
+
License-Expression: Apache-2.0
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Requires-Dist: backports-strenum<2.0.0,>=1.2; python_version < '3.11'
|
|
14
|
+
Requires-Dist: cognite-sdk<8.0.0,>=7.83.0
|
|
15
|
+
Requires-Dist: elementpath<5.0.0,>=4.0.0
|
|
16
|
+
Requires-Dist: exceptiongroup<2.0.0,>=1.1.3; python_version < '3.11'
|
|
17
|
+
Requires-Dist: httpx>=0.28.1
|
|
18
|
+
Requires-Dist: jsonpath-python<2.0.0,>=1.0.6
|
|
19
|
+
Requires-Dist: mixpanel<5.0.0,>=4.10.1
|
|
20
|
+
Requires-Dist: networkx<4.0.0,>=3.4.2
|
|
21
|
+
Requires-Dist: openpyxl<4.0.0,>=3.0.10
|
|
22
|
+
Requires-Dist: packaging>=22.0
|
|
23
|
+
Requires-Dist: pandas<3.0.0,>=1.5.3
|
|
24
|
+
Requires-Dist: pydantic<3.0.0,>=2.0.0
|
|
25
|
+
Requires-Dist: pyvis<1.0.0,>=0.3.2
|
|
26
|
+
Requires-Dist: pyyaml<7.0.0,>=6.0.1
|
|
27
|
+
Requires-Dist: rdflib<8.0.0,>=7.0.0
|
|
28
|
+
Requires-Dist: requests<3.0.0,>=2.28.1
|
|
29
|
+
Requires-Dist: rich[jupyter]<14.0.0,>=13.7.1
|
|
30
|
+
Requires-Dist: tomli<3.0.0,>=2.0.1; python_version < '3.11'
|
|
31
|
+
Requires-Dist: typing-extensions<5.0.0,>=4.8.0; python_version < '3.11'
|
|
32
|
+
Requires-Dist: urllib3<3.0.0,>=1.26.15
|
|
33
|
+
Provides-Extra: docs
|
|
34
|
+
Requires-Dist: mistune==3.0.2; extra == 'docs'
|
|
35
|
+
Requires-Dist: mkdocs-autorefs<1.0.0,>=0.5.0; extra == 'docs'
|
|
36
|
+
Requires-Dist: mkdocs-git-authors-plugin<1.0.0,>=0.9.4; extra == 'docs'
|
|
37
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin; extra == 'docs'
|
|
38
|
+
Requires-Dist: mkdocs-gitbook<1.0.0,>=0.0.1; extra == 'docs'
|
|
39
|
+
Requires-Dist: mkdocs-glightbox<1.0.0,>=0.4.0; extra == 'docs'
|
|
40
|
+
Requires-Dist: mkdocs-jupyter<1.0.0,>=0.25.1; extra == 'docs'
|
|
41
|
+
Requires-Dist: mkdocs-material-extensions<2.0.0,>=1.3.1; extra == 'docs'
|
|
42
|
+
Requires-Dist: mkdocs<2.0.0,>=1.4.0; extra == 'docs'
|
|
43
|
+
Requires-Dist: mkdocstrings[python]<1.0.0,>=0.25.2; extra == 'docs'
|
|
44
|
+
Requires-Dist: pymdown-extensions<11.0.0,>=10.14.3; extra == 'docs'
|
|
45
|
+
Provides-Extra: google
|
|
46
|
+
Requires-Dist: google-api-python-client<3.0.0,>=2.70.0; extra == 'google'
|
|
47
|
+
Requires-Dist: google-auth-oauthlib<2.0.0,>=1.0.0; extra == 'google'
|
|
48
|
+
Requires-Dist: gspread<6.0.0,>=5.0.0; extra == 'google'
|
|
49
|
+
Provides-Extra: lxml
|
|
50
|
+
Requires-Dist: lxml<6.0.0,>=5.3.0; extra == 'lxml'
|
|
51
|
+
Provides-Extra: oxi
|
|
52
|
+
Requires-Dist: oxrdflib<0.5.0,>=0.4.0; extra == 'oxi'
|
|
53
|
+
Requires-Dist: pyoxigraph<0.5.0,>=0.4.3; extra == 'oxi'
|
|
54
|
+
Description-Content-Type: text/markdown
|
|
55
|
+
|
|
56
|
+
# kNowlEdge grAph Transformer (NEAT)
|
|
57
|
+
|
|
58
|
+
[](https://github.com/cognitedata/neat/actions/workflows/release.yaml)
|
|
59
|
+
[](https://cognite-neat.readthedocs-hosted.com/en/latest/?badge=latest)
|
|
60
|
+
[](https://github.com/cognitedata/neat)
|
|
61
|
+
[](https://pypi.org/project/cognite-neat/)
|
|
62
|
+
[](https://pypistats.org/packages/cognite-neat)
|
|
63
|
+
[](https://github.com/cognitedata/neat/blob/master/LICENSE)
|
|
64
|
+
[](https://github.com/ambv/black)
|
|
65
|
+
[](https://github.com/astral-sh/ruff)
|
|
66
|
+
[](http://mypy-lang.org)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
There was no easy way to make knowledge graphs, especially data models, and onboard them to
|
|
71
|
+
[Cognite Data Fusion](https://www.cognite.com/en/product/cognite_data_fusion_industrial_dataops_platform), so we have built NEAT!
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
NEAT is great for data model development, validation and deployment. It comes with an evergrowing library of validators,
|
|
75
|
+
which will assure that your data model adheres to the best practices and that is performant. Unlike other solutions,
|
|
76
|
+
which require you to be a technical wizard or modeling expert, NEAT provides you a guiding data modeling experience.
|
|
77
|
+
|
|
78
|
+
We offer various interfaces on how you can develop your data model, where majority of our users prefer
|
|
79
|
+
a combination of Jupyter Notebooks, leveraging NEAT features through so called [NeatSession](https://cognite-neat.readthedocs-hosted.com/en/latest/reference/NeatSession/session.html), with [a Spreadsheet data model template](https://cognite-neat.readthedocs-hosted.com/en/latest/excel_data_modeling/data_model.html).
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
Only Data modeling? There was more before!?
|
|
83
|
+
True, NEAT v0.x (legacy) offered a complete knowledge graph
|
|
84
|
+
tooling. Do not worry though, all the legacy features are still available and will be gradually
|
|
85
|
+
ported to NEAT v1.x according to the [roadmap](https://cognite-neat.readthedocs-hosted.com/en/latest/roadmap.html).
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## Usage
|
|
89
|
+
The user interface for `NEAT` features is through `NeatSession`, which is typically instantiated in a notebook-based environment due to simplified interactivity with `NEAT`
|
|
90
|
+
and navigation of the session content. Once you have set up your notebook environment, and installed neat via:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
pip install cognite-neat
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
you start by creating a `CogniteClient` and instantiate a `NeatSession` object:
|
|
97
|
+
|
|
98
|
+
```python
|
|
99
|
+
from cognite.neat import NeatSession, get_cognite_client
|
|
100
|
+
|
|
101
|
+
client = get_cognite_client(".env")
|
|
102
|
+
|
|
103
|
+
neat = NeatSession(client)
|
|
104
|
+
|
|
105
|
+
neat.physical_data_model.read.cdf("cdf_cdm", "CogniteCore", "v1")
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Documentation
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
For more information, see the [documentation](https://cognite-neat.readthedocs-hosted.com/en/latest/)
|
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
cognite/neat/__init__.py,sha256=u5EhnGuNS2GKydU6lVFCNrBpHBBKUnCDAE63Cqk__eo,244
|
|
2
|
+
cognite/neat/_config.py,sha256=NXObeA-860LV40KlY4orsqjMGACa0jKRz2UE5L9kH6U,8401
|
|
3
|
+
cognite/neat/_exceptions.py,sha256=ox-5hXpee4UJlPE7HpuEHV2C96aLbLKo-BhPDoOAzhA,1650
|
|
4
|
+
cognite/neat/_issues.py,sha256=wH1mnkrpBsHUkQMGUHFLUIQWQlfJ_qMfdF7q0d9wNhY,1871
|
|
5
|
+
cognite/neat/_version.py,sha256=4u0odea2n_kDMh-RrqZiEQvbH-i7WPm2CMDSC6GsjRA,44
|
|
6
|
+
cognite/neat/legacy.py,sha256=eI2ecxOV8ilGHyLZlN54ve_abtoK34oXognkFv3yvF0,219
|
|
7
|
+
cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
cognite/neat/_client/__init__.py,sha256=75Bh7eGhaN4sOt3ZcRzHl7pXaheu1z27kmTHeaI05vo,114
|
|
9
|
+
cognite/neat/_client/api.py,sha256=nbxCdWBXcTVM6MrQeT_VpB6ehfoI544JHPFq-ejQKCY,292
|
|
10
|
+
cognite/neat/_client/client.py,sha256=h0HELAHiBFxMNInkDu4AzbgfEIXqeM0BqqnMBmXjgi0,903
|
|
11
|
+
cognite/neat/_client/config.py,sha256=eIIdWaA13yncRP6X7vTYsTpmXmVcmkhZPv5oPnLUEVc,1484
|
|
12
|
+
cognite/neat/_client/containers_api.py,sha256=JPXbCm68d5GsnIdMWgQKP48ax9lY8L2w2tC-7iKCpUA,4486
|
|
13
|
+
cognite/neat/_client/data_classes.py,sha256=HYPsrAJGVCUmlWTSIxJgAnIHAOzcyDveMM6Z-cuA92M,1404
|
|
14
|
+
cognite/neat/_client/data_model_api.py,sha256=ogVHOabQ3HTqWaaoiGClmbtYdP-pl6DPN2zmPdH5LWY,4253
|
|
15
|
+
cognite/neat/_client/spaces_api.py,sha256=xHtSMt_2k2YwZ5_8kH2dfa7fWxQQrky7wra4Ar2jwqs,4111
|
|
16
|
+
cognite/neat/_client/statistics_api.py,sha256=HcYb2nNC9M_iaI1xyjjLn2Cz1tcyu7BJeaqVps79tg4,773
|
|
17
|
+
cognite/neat/_client/views_api.py,sha256=vZh851Yw8X-Y90sahOiGnq-pwDOBBXegcxTtypkcMvA,4956
|
|
18
|
+
cognite/neat/_data_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
cognite/neat/_data_model/_analysis.py,sha256=d_gP0M_8-HjSAhWT28cfdOsydNAKmOOT4pTh5W_CQcU,8827
|
|
20
|
+
cognite/neat/_data_model/_constants.py,sha256=txKFNRPkCRrIkXbf_bLCYBCMkoE_7nc5LliohzMGwOs,1596
|
|
21
|
+
cognite/neat/_data_model/_identifiers.py,sha256=2l_bCtuE6TVZLCnzV7hhAUTP0kU6ji4QlIK-JhRK1fM,1922
|
|
22
|
+
cognite/neat/_data_model/_shared.py,sha256=H0gFqa8tKFNWuvdat5jL6OwySjCw3aQkLPY3wtb9Wrw,1302
|
|
23
|
+
cognite/neat/_data_model/deployer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
cognite/neat/_data_model/deployer/_differ.py,sha256=1ircRBCoaFooSzMTmTZBTORHeAhDa8YtDEnVwBo6TUI,4742
|
|
25
|
+
cognite/neat/_data_model/deployer/_differ_container.py,sha256=mcy7PhUOfnvAxnZWNoeNRmiXa8ovIn0W6YoqfzVYyiQ,14665
|
|
26
|
+
cognite/neat/_data_model/deployer/_differ_data_model.py,sha256=iA7Xp-7NRvzZJXLLpJaLebkKKpv_VCBKPX6f-RU9wBk,1864
|
|
27
|
+
cognite/neat/_data_model/deployer/_differ_space.py,sha256=J_AaqiseLpwQsOkKc7gmho4U2oSWAGVeEdQNepZiWw0,343
|
|
28
|
+
cognite/neat/_data_model/deployer/_differ_view.py,sha256=g1xHwsoxFUaTOTtQa19nntKF3rxFzc2FxpKKFAUN_NE,11412
|
|
29
|
+
cognite/neat/_data_model/deployer/data_classes.py,sha256=ZNSBFNhq46FfERKwC3Zu2TU1RFDdFsnaUzTtztgWdDY,23050
|
|
30
|
+
cognite/neat/_data_model/deployer/deployer.py,sha256=_d3A2JnrVD4sjBNJIkXbwtTQOW5fc7QWrQBdwBfN8fs,18277
|
|
31
|
+
cognite/neat/_data_model/exporters/__init__.py,sha256=AskjmB_0Vqib4kN84bWt8-M8nO42QypFf-l-E8oA5W8,482
|
|
32
|
+
cognite/neat/_data_model/exporters/_api_exporter.py,sha256=G9cqezy_SH8VdhW4o862qBHh_QcbzfP6O1Yyjvdpeog,1579
|
|
33
|
+
cognite/neat/_data_model/exporters/_base.py,sha256=rG_qAU5i5Hh5hUMep2UmDFFZID4x3LEenL6Z5C6N8GQ,646
|
|
34
|
+
cognite/neat/_data_model/exporters/_table_exporter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
cognite/neat/_data_model/exporters/_table_exporter/exporter.py,sha256=4BPu_Chtjh1EyOaKbThXYohsqllVOkCbSoNekNZuBXc,5159
|
|
36
|
+
cognite/neat/_data_model/exporters/_table_exporter/workbook.py,sha256=1Afk1WqeNe9tiNeSAm0HrF8jTQ1kTbIv1D9hMztKwO8,18482
|
|
37
|
+
cognite/neat/_data_model/exporters/_table_exporter/writer.py,sha256=QsO2BWB-_Jw_hpawHtG26NOnLu6wwtDosT-c1acNLPw,19270
|
|
38
|
+
cognite/neat/_data_model/importers/__init__.py,sha256=dHnKnC_AXk42z6wzEHK15dxIOh8xSEkuUf_AFRZls0E,193
|
|
39
|
+
cognite/neat/_data_model/importers/_api_importer.py,sha256=H8Ow3Tt7utuAuBhC6s7yWvhGqunHAtE0r0XRsVAr6IE,7280
|
|
40
|
+
cognite/neat/_data_model/importers/_base.py,sha256=NRB0FcEBj4GaethU68nRffBfTedBBA866A3zfJNfmiQ,433
|
|
41
|
+
cognite/neat/_data_model/importers/_table_importer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
cognite/neat/_data_model/importers/_table_importer/data_classes.py,sha256=-S379Apvz2QSchBTG89mrVdOrAo7LH_O1kjqMOlv-fk,9619
|
|
43
|
+
cognite/neat/_data_model/importers/_table_importer/importer.py,sha256=lQ4_Gpv0haEwQEDYZJaxtR9dL6Y0ys9jbjFfWxH6s2o,8870
|
|
44
|
+
cognite/neat/_data_model/importers/_table_importer/reader.py,sha256=I9-zHCpJLo7bj4BabAzSgNBDVUAocdhlvBfy95JkWRw,49451
|
|
45
|
+
cognite/neat/_data_model/importers/_table_importer/source.py,sha256=h7u5ur5oetmvBs3wgj7Ody5uPF21QwxeAceoIhJ5qzo,3300
|
|
46
|
+
cognite/neat/_data_model/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
cognite/neat/_data_model/models/conceptual/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
cognite/neat/_data_model/models/conceptual/_base.py,sha256=SFkoBJDM51pqew_isHFJoB20OgfofpwVRnTrg-rKkNY,710
|
|
49
|
+
cognite/neat/_data_model/models/conceptual/_concept.py,sha256=0Pk4W2TJ_Y0Z7oPHpzely1kPXrAkmkyqw6a0n3il6LY,2248
|
|
50
|
+
cognite/neat/_data_model/models/conceptual/_data_model.py,sha256=xRnKD1JFXscXAV_joitRdbjh9BTbME6z6IxS3fZNMZM,1696
|
|
51
|
+
cognite/neat/_data_model/models/conceptual/_properties.py,sha256=CpF37vJYBTLT4DH4ZOu2U-JyWtkb_27V8fw52qiaE_k,4007
|
|
52
|
+
cognite/neat/_data_model/models/conceptual/_property.py,sha256=blSZQxX52zaILAtjUkldPzPeysz7wnG-UGSNU5tacI8,4138
|
|
53
|
+
cognite/neat/_data_model/models/dms/__init__.py,sha256=CW5NPMRrMyY4iyZgqYb8eZkRuwbbXUDSVNMWep3zEPI,5326
|
|
54
|
+
cognite/neat/_data_model/models/dms/_base.py,sha256=931ODXnhrBrzf6vkjqu2IaFz8r2gGxuapn85yN_jkgg,889
|
|
55
|
+
cognite/neat/_data_model/models/dms/_constants.py,sha256=TaoE9kmNVEaTl_dDrZQL7YzgP4K13ff0Rc7nr4zbIgg,1384
|
|
56
|
+
cognite/neat/_data_model/models/dms/_constraints.py,sha256=cyGgDlByXAuSMWJg7Oc25fkp33LsA61M927bCzTWlbo,1458
|
|
57
|
+
cognite/neat/_data_model/models/dms/_container.py,sha256=wtQbNUwtpymltT1jav8wD4kIfjaIYnvhhz1KS0ffAbo,6044
|
|
58
|
+
cognite/neat/_data_model/models/dms/_data_model.py,sha256=tq_JGNN-1JxG46bhBhunZiLedklYbDXFEfINB0x3a3Q,3219
|
|
59
|
+
cognite/neat/_data_model/models/dms/_data_types.py,sha256=FMt_d5aJD-o3s9VQWyyCVlHk7D_p3RlSNXBP1OACPs4,6424
|
|
60
|
+
cognite/neat/_data_model/models/dms/_http.py,sha256=YIRRowqkphFAYkx3foTeLyPMe9fNnmzhUCBDXe0u9Kk,926
|
|
61
|
+
cognite/neat/_data_model/models/dms/_indexes.py,sha256=ZtXe8ABuRcsAwRIZ9FCanS3uwZHpkOAhvDvjSXtx_Fs,900
|
|
62
|
+
cognite/neat/_data_model/models/dms/_limits.py,sha256=x_X7T50SkwPNo_aHTGCr35hDXI8FRdZLYIB9HpFqnIk,3520
|
|
63
|
+
cognite/neat/_data_model/models/dms/_references.py,sha256=x2sK_YnEpWtLED4j8dqrqVxOrJEkB8PcNJJ5Ab8YzwU,3724
|
|
64
|
+
cognite/neat/_data_model/models/dms/_schema.py,sha256=2JFLcm52smzPdtZ69Lf02UbYAD8I_hpRbI7ZAzdxJJs,641
|
|
65
|
+
cognite/neat/_data_model/models/dms/_space.py,sha256=3KvWg0bVuLpgQwhkDbsJ53ZMMmK0cKUgfyDRrSrERko,1904
|
|
66
|
+
cognite/neat/_data_model/models/dms/_types.py,sha256=5-cgC53AG186OZUqkltv7pMjcGNLuH7Etbn8IUcgk1c,447
|
|
67
|
+
cognite/neat/_data_model/models/dms/_view_filter.py,sha256=cfeEOtRz5SGFI0rmPD3jNl-V6_zJxyxgxYjG3Oz8OEU,10301
|
|
68
|
+
cognite/neat/_data_model/models/dms/_view_property.py,sha256=nJBPmw4KzJOdaQmvRfCE3A4FL-E13OsNUEufI64vLKo,9271
|
|
69
|
+
cognite/neat/_data_model/models/dms/_views.py,sha256=1yxuwnsUM4WKItEY1hmJbMQKW0q3Dn321NmLmKLJeCM,8657
|
|
70
|
+
cognite/neat/_data_model/models/entities/__init__.py,sha256=7dDyES7fYl9LEREal59F038RdEvfGRpUOc6n_MtSgjU,836
|
|
71
|
+
cognite/neat/_data_model/models/entities/_base.py,sha256=PaNrD29iwxuqTpRWbmESMTxRhhKXmRyDF_cLZEC69dg,3927
|
|
72
|
+
cognite/neat/_data_model/models/entities/_constants.py,sha256=EK9Bus8UgFgxK5cVFMTAqWSl6aWkDe7d59hpUmlHlBs,517
|
|
73
|
+
cognite/neat/_data_model/models/entities/_data_types.py,sha256=DfdEWGek7gODro-_0SiiInhPGwul4zn-ASACQfn8HUY,2838
|
|
74
|
+
cognite/neat/_data_model/models/entities/_identifiers.py,sha256=Ab_cMPbk5b0tKnivkm5pHKLv3cLb5KrwhxDu2elStvQ,1924
|
|
75
|
+
cognite/neat/_data_model/models/entities/_parser.py,sha256=zef_pSDZYMZrJl4IKreFDR577KutfhtN1xpH3Ayjt2o,7669
|
|
76
|
+
cognite/neat/_data_model/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
+
cognite/neat/_data_model/validation/dms/__init__.py,sha256=kKD18-Bg_G-w11Cs7Wv_TKV0C_q62Pm2RKLpOz27ar4,2642
|
|
78
|
+
cognite/neat/_data_model/validation/dms/_ai_readiness.py,sha256=hFrnRzBBf143ejLHRk3BpylzrVpxUX537BouOlv4PFE,15552
|
|
79
|
+
cognite/neat/_data_model/validation/dms/_base.py,sha256=3Lqs8pzMQZznxhUr8esEe9H7F2wM3EKEl2H64GLS5OA,13344
|
|
80
|
+
cognite/neat/_data_model/validation/dms/_connections.py,sha256=6ea8WZNqYT9SPluwXvg0mgDJpzZMqpPC5xonbdLrT4E,27305
|
|
81
|
+
cognite/neat/_data_model/validation/dms/_consistency.py,sha256=uJ6coAVupD3WfeeXxoCIebM8WSnR78GXBXIBnN59aao,2477
|
|
82
|
+
cognite/neat/_data_model/validation/dms/_containers.py,sha256=UuvzrBBw45F5f9uzCh97lW4t7m7XIIT1I9FnzzYUYv4,7533
|
|
83
|
+
cognite/neat/_data_model/validation/dms/_limits.py,sha256=UDJ3oY2Xp96Zw2QpsGM4MQ6gZCrDuoKhhuEY2uQJLP4,16186
|
|
84
|
+
cognite/neat/_data_model/validation/dms/_orchestrator.py,sha256=XrozA27fbzWCuCQKLx70jMaeABedKHTHs8vg-hqx3_w,11061
|
|
85
|
+
cognite/neat/_data_model/validation/dms/_views.py,sha256=M4egIa7UAMGtZlqzIxx6ZzL4e_qo8GbDGh7vs9wywD8,4266
|
|
86
|
+
cognite/neat/_session/__init__.py,sha256=owqW5Mml2DSZx1AvPvwNRTBngfhBNrQ6EH-7CKL7Jp0,61
|
|
87
|
+
cognite/neat/_session/_issues.py,sha256=E8UQeSJURg2dm4MF1pfD9dp-heSRT7pgQZgKlD1-FGs,2723
|
|
88
|
+
cognite/neat/_session/_physical.py,sha256=ajNanS87THBESx_y1x6p6LomqOe51b197VKPaBPLZ30,11377
|
|
89
|
+
cognite/neat/_session/_result.py,sha256=po2X4s-Tioe0GQAGCfK862hKXNRX5YjJZsEzNcTC8nI,7879
|
|
90
|
+
cognite/neat/_session/_session.py,sha256=STrX0Q7dXw9W7y9LFgLV_3XoYJk1fGSyBalSblLEj5w,3264
|
|
91
|
+
cognite/neat/_session/_wrappers.py,sha256=9t_MnJ0Sw_v-f6oTIh8dtAT-3oEbqumGuND97aPCC3M,3581
|
|
92
|
+
cognite/neat/_session/_html/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
+
cognite/neat/_session/_html/_render.py,sha256=fD8iee4ql50CrHGH41SSh9Tw1lM0tHt-NF0OnnxHosg,1193
|
|
94
|
+
cognite/neat/_session/_html/static/__init__.py,sha256=ZLQFJMITBgbiyTRaVbFAm1l-Dhr5pXKKsfY8jjD3ZhY,305
|
|
95
|
+
cognite/neat/_session/_html/static/deployment.css,sha256=wRv2G0NKIxSq4kyOqd3ajZY60KeT4D6-D3lG-TmzURY,4894
|
|
96
|
+
cognite/neat/_session/_html/static/deployment.js,sha256=0fNAIYYtDJR6RhvZvnRSN6UvgvnWTXb_UFUSDxsI9JU,5795
|
|
97
|
+
cognite/neat/_session/_html/static/issues.css,sha256=Egvqo2cnY8FKTtZp_v3rTWcIgb1vTJvToNCJJovWm70,3824
|
|
98
|
+
cognite/neat/_session/_html/static/issues.js,sha256=NHx_iAsZTvpZjOoFsxFU_sxqjF4-F4EdHRmoc2DjpIE,6348
|
|
99
|
+
cognite/neat/_session/_html/static/shared.css,sha256=uUm5fqK1zrMBWCuAWdUoBRaAj9AO611hUxuGvxMzbzc,4190
|
|
100
|
+
cognite/neat/_session/_html/templates/__init__.py,sha256=hgufJuBxUZ2nLCMTCxGixmk5ztZF38HzPcvtBkWJwxw,128
|
|
101
|
+
cognite/neat/_session/_html/templates/deployment.html,sha256=rhqcBI5no8h0BEiwTIQy5A3wvBygytCUolpc50yFiTE,3487
|
|
102
|
+
cognite/neat/_session/_html/templates/issues.html,sha256=k9Ml3LLeWGhpMfqSoCl6QuNRRy__E6Sa5S_I1Kc33NU,1659
|
|
103
|
+
cognite/neat/_session/_usage_analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
+
cognite/neat/_session/_usage_analytics/_collector.py,sha256=8yVfzt8KFfZ-ldkVjDWazuQbs45Q3r6vWKcZEwU8i18,4734
|
|
105
|
+
cognite/neat/_session/_usage_analytics/_constants.py,sha256=-tVdYrCTMKfuMlbO7AlzC29Nug41ug6uuX9DFuihpJg,561
|
|
106
|
+
cognite/neat/_session/_usage_analytics/_storage.py,sha256=w3mUvmPysww6vM3PZBjg6jzNEsDISl7FJ1j19LNs26E,7779
|
|
107
|
+
cognite/neat/_state_machine/__init__.py,sha256=wrtQUHETiLzYM0pFo7JC6pJCiXetHADQbyMu8pU8rQU,195
|
|
108
|
+
cognite/neat/_state_machine/_base.py,sha256=-ZpeAhM6l6N6W70dET25tAzOxaaK5aa474eabwZVzjA,1112
|
|
109
|
+
cognite/neat/_state_machine/_states.py,sha256=nmj4SmunpDYcBsNx8A284xnXGS43wuUuWpMMORha2DE,1170
|
|
110
|
+
cognite/neat/_store/__init__.py,sha256=TvM9CcFbtOSrxydPAuJi6Bv_iiGard1Mxfx42ZFoTl0,55
|
|
111
|
+
cognite/neat/_store/_provenance.py,sha256=tWQGa2QNPyW7FfHQBRto9eHXCxeOTzlz7DvYjAwHfuY,3102
|
|
112
|
+
cognite/neat/_store/_store.py,sha256=Ql1nZvq2UtNoI-L1OmIUFQGXQ4i5-Zche28-YHnBkyg,6775
|
|
113
|
+
cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
|
+
cognite/neat/_utils/_reader.py,sha256=9dXrODNNqWU0Gx1zXjRTOiiByFuDZlpQkQEzx3HAxYQ,5390
|
|
115
|
+
cognite/neat/_utils/auxiliary.py,sha256=Cx-LP8dfN782R3iUcm--q26zdzQ0k_RFnVbJ0bwVZMI,1345
|
|
116
|
+
cognite/neat/_utils/collection.py,sha256=BIwRrFbUXNPvHhEVujLHgVoDJXzdPEMScrbSBhyCibk,446
|
|
117
|
+
cognite/neat/_utils/text.py,sha256=-ujNaG_hLkdurKsUmZB9ZI_kJkddlCKEf8g-g_XCk10,2010
|
|
118
|
+
cognite/neat/_utils/useful_types.py,sha256=BwTjcWnpxnxN8rWXuYXMgU55O_YjVteMtYK0y25OmH0,1260
|
|
119
|
+
cognite/neat/_utils/validation.py,sha256=U422V0TY5KujFJFyfhRLONVj5A4AcCWgqIKVK6BUm7M,6938
|
|
120
|
+
cognite/neat/_utils/http_client/__init__.py,sha256=qaCLLLhi7H3b_cmbknX0S66KILT7JSKX1YSgZjNdd1U,786
|
|
121
|
+
cognite/neat/_utils/http_client/_client.py,sha256=TO9C77LcsqX0R3Fu-mP560nnV6rP5oRXki9kxRYtBlg,9658
|
|
122
|
+
cognite/neat/_utils/http_client/_config.py,sha256=C8IF1JoijmVMjA_FEMgAkiD1buEV1cY5Og3t-Ecyfmk,756
|
|
123
|
+
cognite/neat/_utils/http_client/_data_classes.py,sha256=McyCQZUcwkbOXdBmc99DdNsO6mQz8dNVsepDvXmaINA,10138
|
|
124
|
+
cognite/neat/_utils/http_client/_tracker.py,sha256=EBBnd-JZ7nc_jYNFJokCHN2UZ9sx0McFLZvlceUYYic,1215
|
|
125
|
+
cognite/neat/_v0/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
|
+
cognite/neat/_v0/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
+
cognite/neat/_v0/core/_config.py,sha256=WT1BS8uADcFvGoUYOOfwFOVq_VBl472TisdoA3wLick,280
|
|
128
|
+
cognite/neat/_v0/core/_constants.py,sha256=JQRhIlmYOsNesGQob8YA_yqkjoXu-7HtyUJQl4060o8,9137
|
|
129
|
+
cognite/neat/_v0/core/_shared.py,sha256=Ov59SWYboRRsncB_5V1ZC_BAoACfNLjo80vqE5Ru6wo,2325
|
|
130
|
+
cognite/neat/_v0/core/_client/__init__.py,sha256=RQ7MwL8mwGqGHokRzsPqO3XStDzmI4-c12_gz1UPJ74,177
|
|
131
|
+
cognite/neat/_v0/core/_client/_api_client.py,sha256=jei-Qy7hm-HpR9-GOEXM5cKrzFiS1eTt_UovrZZQaTY,864
|
|
132
|
+
cognite/neat/_v0/core/_client/testing.py,sha256=xtLv0y8MAAEaYtktBMiVfyuFTFKFAZJVqfUHqbCIRD0,1333
|
|
133
|
+
cognite/neat/_v0/core/_client/_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
|
+
cognite/neat/_v0/core/_client/_api/data_modeling_loaders.py,sha256=zbHBRpu_5-5RAN95vLR6xXNjQ3gLPNememo0hPpX2aE,43851
|
|
135
|
+
cognite/neat/_v0/core/_client/_api/neat_instances.py,sha256=PevhpFkihgC2UWfqULS8xx7pINngPwYLP2qazj75pbA,4825
|
|
136
|
+
cognite/neat/_v0/core/_client/_api/schema.py,sha256=zfx8u4Wzhi-QO-VuC3AsFAuEJ8-dw1W1itzJUCg9oF4,6987
|
|
137
|
+
cognite/neat/_v0/core/_client/_api/statistics.py,sha256=9flz93KqK_o6xCGLy6EKe3kRodd6Bji4kLXTk6tGeAI,3808
|
|
138
|
+
cognite/neat/_v0/core/_client/data_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
+
cognite/neat/_v0/core/_client/data_classes/data_modeling.py,sha256=RvpUp9ygd-yffQFJ7O2mQqMLDPIa-dmip5zPb8QVIiw,6672
|
|
140
|
+
cognite/neat/_v0/core/_client/data_classes/neat_sequence.py,sha256=QZWSfWnwk6KlYJvsInco4Wdwc1U8DnOQKWmHebArbQY,10830
|
|
141
|
+
cognite/neat/_v0/core/_client/data_classes/schema.py,sha256=36tVbphxjiuIgvSSYmXOVbJZIS7sRHXvBUxYpIjx7xo,25083
|
|
142
|
+
cognite/neat/_v0/core/_client/data_classes/statistics.py,sha256=GU-u41cOTig0Y5pYhW5KqzCsuAUIX9tOmdizMEveYuw,4487
|
|
143
|
+
cognite/neat/_v0/core/_data_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
+
cognite/neat/_v0/core/_data_model/_constants.py,sha256=oNgFTYEQm1yjpUWhWlY9bVjoZ4odXOLQK0r_kGllNOA,6121
|
|
145
|
+
cognite/neat/_v0/core/_data_model/_shared.py,sha256=7L8G4gGt9v7L1AJslpNJAA7HSEbSFnjUZLJq94wzA5A,2104
|
|
146
|
+
cognite/neat/_v0/core/_data_model/analysis/__init__.py,sha256=v3hSfz7AEEqcmdjL71I09tP8Hl-gPZYOiDYMp_CW4vg,70
|
|
147
|
+
cognite/neat/_v0/core/_data_model/analysis/_base.py,sha256=eGDgnsIcBU6BNvyTXQYcymhM9mr-U8-eW9l1Ssywrvc,24480
|
|
148
|
+
cognite/neat/_v0/core/_data_model/catalog/__init__.py,sha256=zWG1-GONe8m05lV3gLAK_Xp7EJvcy6qLLl2B-RHHBjw,260
|
|
149
|
+
cognite/neat/_v0/core/_data_model/catalog/classic_model.xlsx,sha256=YkocpkKypizjsWYwOdn5yzIz_BSl8T8SQLxgm4GIjLQ,15014
|
|
150
|
+
cognite/neat/_v0/core/_data_model/catalog/conceptual-imf-data-model.xlsx,sha256=vrE5g8vBtsGpwJqygxG3t9I3x4SUAyQsi1vtWfZ8QW4,53682
|
|
151
|
+
cognite/neat/_v0/core/_data_model/catalog/hello_world_pump.xlsx,sha256=E63t5U1PQLIoUfXp1mEuhuq8I2TGKovZlEfIhO5bevw,23322
|
|
152
|
+
cognite/neat/_v0/core/_data_model/exporters/__init__.py,sha256=NSTeVtfgfkfrhf_Ruz5rHnlF0wIj2dIhAm3io1tEIkQ,1153
|
|
153
|
+
cognite/neat/_v0/core/_data_model/exporters/_base.py,sha256=pIfa_LDRHnplDVINJP1ifS27K54UzTle7Vpafq3BkME,2419
|
|
154
|
+
cognite/neat/_v0/core/_data_model/exporters/_data_model2dms.py,sha256=K2VmleZDVU3Tf-wbNd8nTl97rYWXGwe-T3VdCkbFN5Q,19927
|
|
155
|
+
cognite/neat/_v0/core/_data_model/exporters/_data_model2excel.py,sha256=x26Aiy4Nu_88YQ4SCT0I3n4cO68mIFedlldetIMeX-A,25523
|
|
156
|
+
cognite/neat/_v0/core/_data_model/exporters/_data_model2instance_template.py,sha256=W0nVtTFPz8DjB-nxrmVTjXMXSAwH6VCTDc6pTfTedLs,6119
|
|
157
|
+
cognite/neat/_v0/core/_data_model/exporters/_data_model2semantic_model.py,sha256=5awv0Cs0-ezUKlwrLpqHC346br0Bn8v5gpAKV2OYXyE,23163
|
|
158
|
+
cognite/neat/_v0/core/_data_model/exporters/_data_model2yaml.py,sha256=0mE58mjy1uBxYe7r4mGGeFNMuMB_XJf6ti7czpQwOpU,3288
|
|
159
|
+
cognite/neat/_v0/core/_data_model/importers/__init__.py,sha256=jkDKSGv5VdJgl44lmn7VQtD6-rqo09VFOr-tTB5Lfyc,1290
|
|
160
|
+
cognite/neat/_v0/core/_data_model/importers/_base.py,sha256=nUtlTVVZUSsmrUfzqV6qZl0ZwgBgK0RZilBltoTXJZ4,2033
|
|
161
|
+
cognite/neat/_v0/core/_data_model/importers/_base_file_reader.py,sha256=KgW-ssZeUCISLajzsNiQ8KuD60acA8du-j8_0Xezsb8,1629
|
|
162
|
+
cognite/neat/_v0/core/_data_model/importers/_dict2data_model.py,sha256=E25ye91Wi0Ei6-oXEkSzTZC44k6wqn9p3dMr7NoE3mY,4725
|
|
163
|
+
cognite/neat/_v0/core/_data_model/importers/_dms2data_model.py,sha256=7_Ww1ViyycBb-yMTzU3cF376--yymVnzKVavUNE_n2c,29570
|
|
164
|
+
cognite/neat/_v0/core/_data_model/importers/_graph2data_model.py,sha256=UUabX2RActccay3lMx7G-qYDzAt0BYGElurfKbjYRNw,13732
|
|
165
|
+
cognite/neat/_v0/core/_data_model/importers/_spreadsheet2data_model.py,sha256=43ltcKA2t1rzzf4eB3e_KW2XnsuSLmpd6wrTDDODjQM,15443
|
|
166
|
+
cognite/neat/_v0/core/_data_model/importers/_rdf/__init__.py,sha256=1yOjV2PKCxwH7uCTXVZhSdxtn5etmFX40cksvwtKcZ8,199
|
|
167
|
+
cognite/neat/_v0/core/_data_model/importers/_rdf/_base.py,sha256=jeOhHqb_eK2fK6JFA8MPNiad2FiD7LCi3Bml_ze58j0,6064
|
|
168
|
+
cognite/neat/_v0/core/_data_model/importers/_rdf/_inference2rdata_model.py,sha256=MdcqF3KdHvH6fuUUBsx189W0S_Dq3YDHwD4BIiKkkGs,28990
|
|
169
|
+
cognite/neat/_v0/core/_data_model/importers/_rdf/_owl2data_model.py,sha256=KejQ4u1r-iVotZ_2sbRksiN9zVsRpZjyI7rP3DUoZI0,5202
|
|
170
|
+
cognite/neat/_v0/core/_data_model/importers/_rdf/_shared.py,sha256=Te6wzzfp4Mxn2ftQOSe28VCmF6E-GlsO7s3dSOMyGVs,9846
|
|
171
|
+
cognite/neat/_v0/core/_data_model/models/__init__.py,sha256=gKKxrN1Mkn6DJ7RBwbXZNs0SRZo1g9filSyXYkSGfZI,1261
|
|
172
|
+
cognite/neat/_v0/core/_data_model/models/_base_unverified.py,sha256=1Wfbp-tJaEF6hd1bFdp2FhTgPkInf-1ZokuEoVJRPxQ,6842
|
|
173
|
+
cognite/neat/_v0/core/_data_model/models/_base_verified.py,sha256=QlEJcJj1OIudh81nwLfxK_CSwGQYrUczIFcxfx3Y8b0,15147
|
|
174
|
+
cognite/neat/_v0/core/_data_model/models/_import_contexts.py,sha256=g-_aDSRRJQ0IJbELCglPni3aiQb42dUiYwOuPMjwZhM,3440
|
|
175
|
+
cognite/neat/_v0/core/_data_model/models/_types.py,sha256=VL9d-8tacuS7CUPdU4Y9E86kJkokSr0RlQ82ihE7A90,5508
|
|
176
|
+
cognite/neat/_v0/core/_data_model/models/data_types.py,sha256=BP7fiw_42Mh8CZdwwsflDH-tfOBFPtHF6rke-ueprGc,10545
|
|
177
|
+
cognite/neat/_v0/core/_data_model/models/conceptual/__init__.py,sha256=9A6myEV8s0-LqdXejaljqPj8S0pIpUL75rNdRDZzyR8,585
|
|
178
|
+
cognite/neat/_v0/core/_data_model/models/conceptual/_unverified.py,sha256=5SvilWLYiy_2NxcUkRZVev5fE0uSCIccBUUkXZBFdiY,6544
|
|
179
|
+
cognite/neat/_v0/core/_data_model/models/conceptual/_validation.py,sha256=uSoMk1PmIgfbHPFGxAZvbLLJwHU5M-RBiQUEm4fvK0M,13907
|
|
180
|
+
cognite/neat/_v0/core/_data_model/models/conceptual/_verified.py,sha256=xRXJV6uzG8hRnXEHaxo6Hq-b3waFjtzFAHYtDh9CEHE,13752
|
|
181
|
+
cognite/neat/_v0/core/_data_model/models/entities/__init__.py,sha256=pDnSy0k2WmoGuvzyLmXimH3IDA6pjO0bO0aEse2TC3o,1853
|
|
182
|
+
cognite/neat/_v0/core/_data_model/models/entities/_constants.py,sha256=GXRzVfArwxF3C67VCkzy0JWTZRkRJUYXBQaaecrqcWc,351
|
|
183
|
+
cognite/neat/_v0/core/_data_model/models/entities/_loaders.py,sha256=QS5KhKc6HlB0KkwMPio8PCQpFpKUz73zFI3zsdLwgp4,5711
|
|
184
|
+
cognite/neat/_v0/core/_data_model/models/entities/_multi_value.py,sha256=RFsZTqtt67YQiNDCCqQYUqzZFdxh3SIVWGYqjajk4ts,2800
|
|
185
|
+
cognite/neat/_v0/core/_data_model/models/entities/_restrictions.py,sha256=c9LCLynCsndk9FMzeFrSzAu1KDpVaTC2Wtm97kL4DjM,8949
|
|
186
|
+
cognite/neat/_v0/core/_data_model/models/entities/_single_value.py,sha256=vBHMEaHql0L7j39e4nzuoPEQ7KK7NOZIZ33-QVkvEjY,24405
|
|
187
|
+
cognite/neat/_v0/core/_data_model/models/entities/_types.py,sha256=ZmtRvQf4Ghhf4hDnKbZeQq4tZyj5NcQngtw8GeZYa_k,2432
|
|
188
|
+
cognite/neat/_v0/core/_data_model/models/entities/_wrapped.py,sha256=hOvdyxCNFgv1UdfaasviKnbEN4yN09Iip0ggQiaXgB4,7993
|
|
189
|
+
cognite/neat/_v0/core/_data_model/models/mapping/__init__.py,sha256=T68Hf7rhiXa7b03h4RMwarAmkGnB-Bbhc1H07b2PyC4,100
|
|
190
|
+
cognite/neat/_v0/core/_data_model/models/mapping/_classic2core.py,sha256=kyGzVtusOkaaaTQLB5YCSJK_N3L4fdqRQFJtoO0uln4,1435
|
|
191
|
+
cognite/neat/_v0/core/_data_model/models/mapping/_classic2core.yaml,sha256=ei-nuivNWVW9HmvzDBKIPF6ZdgaMq64XHw_rKm0CMxg,22584
|
|
192
|
+
cognite/neat/_v0/core/_data_model/models/physical/__init__.py,sha256=4S6GvpEbswUXUc17D7CpJ68l-ISq3t-I_s8f0HQHzzQ,991
|
|
193
|
+
cognite/neat/_v0/core/_data_model/models/physical/_exporter.py,sha256=55m8xvEqiILl65uAjnV-xm0VJMlteqc-Ay12LQmQs0E,30563
|
|
194
|
+
cognite/neat/_v0/core/_data_model/models/physical/_unverified.py,sha256=gR_luPt_1fxQbOKwQGC1uwKlReUI3cKffhFxf1qwFvY,22427
|
|
195
|
+
cognite/neat/_v0/core/_data_model/models/physical/_validation.py,sha256=42zeLBL54rqKdfKoidOQt5ZVVFDB1cjD-e5zR_AQ7xA,41342
|
|
196
|
+
cognite/neat/_v0/core/_data_model/models/physical/_verified.py,sha256=xPAT2Wc03im4GxVmJfzbIJg5Q1BBuSTAAD6B1ASFI5U,29835
|
|
197
|
+
cognite/neat/_v0/core/_data_model/transformers/__init__.py,sha256=N6yRBplAkrwwxoTAre_1BE_fdSZL5jihr7xTQjW3KnM,1876
|
|
198
|
+
cognite/neat/_v0/core/_data_model/transformers/_base.py,sha256=-lHhaVQPzy3DnNocc7dsxX4juqKcjeQvFyKcApN8xVI,3149
|
|
199
|
+
cognite/neat/_v0/core/_data_model/transformers/_converters.py,sha256=Smd4f0739SoOrrbB78IGthn0Wuk-EFzD9Lb7ZZdkla4,112066
|
|
200
|
+
cognite/neat/_v0/core/_data_model/transformers/_mapping.py,sha256=ltfFe3QRh9ckKyk286R1sl_wTqD7HZSvfQZe69NKDF8,19052
|
|
201
|
+
cognite/neat/_v0/core/_data_model/transformers/_union_conceptual.py,sha256=m1EZhmIzpAI6KTBLv7K4beSoD7aIR5jPHH7-82axsfc,8872
|
|
202
|
+
cognite/neat/_v0/core/_data_model/transformers/_verification.py,sha256=ZFRwCsF5Lc2H9PbFAemEa0mQYc-NLUPg0nSC1xZtrJA,5221
|
|
203
|
+
cognite/neat/_v0/core/_instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
|
+
cognite/neat/_v0/core/_instances/_shared.py,sha256=6avH6mtjxjHI7JDLkXwICxGvZwooGBr6APs1_w1To-A,940
|
|
205
|
+
cognite/neat/_v0/core/_instances/_tracking/__init__.py,sha256=WOwsYieZtCW-iW15YkxUFrfKVVdLWdXHOGGStTwvE8A,91
|
|
206
|
+
cognite/neat/_v0/core/_instances/_tracking/base.py,sha256=zgS0Qroo8S55hlJ2ugwvs45N3pDv8j5sujNYsQbT6nA,830
|
|
207
|
+
cognite/neat/_v0/core/_instances/_tracking/log.py,sha256=DX-wudJiYEPJRxTaz4s0EdkADtCG9T_9jm4fml5va1M,937
|
|
208
|
+
cognite/neat/_v0/core/_instances/examples/Knowledge-Graph-Nordic44-dirty.xml,sha256=ujJip6XBs5n8enVDPzNnuGkMBwv8g21tIr1sEVJpK5M,1439359
|
|
209
|
+
cognite/neat/_v0/core/_instances/examples/Knowledge-Graph-Nordic44.xml,sha256=U2Ns-M4LRjT1fBkhmRj63ur7jDzlRtHK9yOLf_npZ_g,1437996
|
|
210
|
+
cognite/neat/_v0/core/_instances/examples/__init__.py,sha256=yAjHVY3b5jOjmbW-iLbhvu7BG014TpGi3K4igkDqW5I,368
|
|
211
|
+
cognite/neat/_v0/core/_instances/examples/skos-capturing-sheet-wind-topics.xlsx,sha256=CV_yK5ZSbYS_ktfIZUPD8Sevs47zpswLXQUDFkGE4Gw,45798
|
|
212
|
+
cognite/neat/_v0/core/_instances/extractors/__init__.py,sha256=6yLrJZtvEO6SLCUxj3oDLXbLzYjfreJheKKLbWR0iMs,2228
|
|
213
|
+
cognite/neat/_v0/core/_instances/extractors/_base.py,sha256=_H0BBzDxGPCVgres0hjfn07yP3-BpQatgd6S79UJ9DU,1980
|
|
214
|
+
cognite/neat/_v0/core/_instances/extractors/_dict.py,sha256=9_VG0aRaX26bn_PkRyMY-V3XAeUT-A5n9K4S6eAL2ag,4531
|
|
215
|
+
cognite/neat/_v0/core/_instances/extractors/_dms.py,sha256=Xl21hDaf1PI2gLIs8-7sKmfebgGkCFwFiIAidE3P1Mk,13864
|
|
216
|
+
cognite/neat/_v0/core/_instances/extractors/_dms_graph.py,sha256=92o4Jj11FK-3sDqRGNcPeFww6O2T5iBUYrDuA41--4U,10239
|
|
217
|
+
cognite/neat/_v0/core/_instances/extractors/_mock_graph_generator.py,sha256=qFQwV8iJMAPJemCtBeucfnMDgqOg7fCENFSu8VNNrJQ,15964
|
|
218
|
+
cognite/neat/_v0/core/_instances/extractors/_raw.py,sha256=7DcxLtR58kQsjIIh4eQOBufj5_KGTOkexTjyZPkOm4E,2526
|
|
219
|
+
cognite/neat/_v0/core/_instances/extractors/_rdf_file.py,sha256=iiLceYM0entGtd91va6lByBDQ_cQAjXe-xJBqORyKtI,2984
|
|
220
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_assets.py,sha256=9WVFrAtUFAp_AAlb26Rtt2Axz9xsPQYetg7SKVrNCr4,1474
|
|
222
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_base.py,sha256=3S_mFaW-6EsmECaKEofNMKmPP7_Rj_JCmrcK5pXJGII,18541
|
|
223
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_classic.py,sha256=eTu9jAlbRndKIutPksCCC3h4hnvZy_Y1lwYswHyAhbg,24477
|
|
224
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_data_sets.py,sha256=xRFv9pVFgIMTZ45E8teMC0Ynku_CuZdcZkVCbhPuPBk,1294
|
|
225
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_events.py,sha256=B8hRoMAg8GQvApjxals5PfPyjmdPO93U3nj_G7g0kDQ,1394
|
|
226
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_files.py,sha256=9lIleYyM3r0_CHteTEWboyknBeHYNtvgpNJuvS9UUU0,1894
|
|
227
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_labels.py,sha256=7guTZdGFT1r7ItE2VNgXwbBZ1y_005oB3fg1XbwT7WQ,2083
|
|
228
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_relationships.py,sha256=h_F2Iy3NsWBEyzVZ0RkV7yqVv9R_5tEz3Zc4FjhvLKs,5407
|
|
229
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_sequences.py,sha256=9G6JXGspJim8vuSIDe2JOw2ySfp6Una8mIBZZfXkYXg,11407
|
|
230
|
+
cognite/neat/_v0/core/_instances/extractors/_classic_cdf/_timeseries.py,sha256=Py8MDcn82MJcsDPbeqDHMx4g2rQHmEOSHNe6gOi5gew,2044
|
|
231
|
+
cognite/neat/_v0/core/_instances/loaders/__init__.py,sha256=qyOrKy0cJgYmgEuWVM-O1mpUemQE8EkfQYtJyEc8UVs,778
|
|
232
|
+
cognite/neat/_v0/core/_instances/loaders/_base.py,sha256=lJID2i7qoQvY6d2VY5AdWmDdHTHj5AsThGQw1ddZtJg,4357
|
|
233
|
+
cognite/neat/_v0/core/_instances/loaders/_rdf2dms.py,sha256=4RmlXZgtIwZzIHHBOC9zxC-4cLpBUC5sOdYS3_o7PGA,29423
|
|
234
|
+
cognite/neat/_v0/core/_instances/loaders/_rdf_to_instance_space.py,sha256=j3GlSAQzRKD1pZdur6xzz81PyRFuCXodlv65bEUWt5k,11981
|
|
235
|
+
cognite/neat/_v0/core/_instances/queries/__init__.py,sha256=W477LMyB4l6HIRbQhJoFgA_MUBwVCh2GBvtFeZu0AUA,53
|
|
236
|
+
cognite/neat/_v0/core/_instances/queries/_base.py,sha256=APevHeeWQDEoOQ0MlBtVlPf9hbZukVkI5fOvt5oPJCE,543
|
|
237
|
+
cognite/neat/_v0/core/_instances/queries/_queries.py,sha256=4BidSQXhdZYZ6_kyG7jMJ2iG0UtSrbQxfmwPM7V167A,466
|
|
238
|
+
cognite/neat/_v0/core/_instances/queries/_select.py,sha256=RbiVjZJSj5uC1EtEiDUzFgdr2HeYpNzJxnkfNiXbjXY,20071
|
|
239
|
+
cognite/neat/_v0/core/_instances/queries/_update.py,sha256=4mlReW42FpVXejgivRfVDRJha8SErZLUXFGhvFzrCf8,1294
|
|
240
|
+
cognite/neat/_v0/core/_instances/transformers/__init__.py,sha256=YzC1Z8BuT77NwagWX4Z-F9R9BARLSS7zM4bCdxBbqKg,1761
|
|
241
|
+
cognite/neat/_v0/core/_instances/transformers/_base.py,sha256=hJWu_U3BGh4PTJeWO0AOUwPmJHTsRdLaASBB5BIllSM,4711
|
|
242
|
+
cognite/neat/_v0/core/_instances/transformers/_classic_cdf.py,sha256=NAWF-eo4sxAGxO2daAlT6tXD16whMz31nKbFGSCdBIE,25352
|
|
243
|
+
cognite/neat/_v0/core/_instances/transformers/_prune_graph.py,sha256=sXC6b1HHSp2bCZ31bleD9o5waKNAo3biI-fjwa4iLSg,12651
|
|
244
|
+
cognite/neat/_v0/core/_instances/transformers/_rdfpath.py,sha256=sRaw3MmDBOcshbNNwKNPgaUIe_oddQj31ap3JCLknKc,3165
|
|
245
|
+
cognite/neat/_v0/core/_instances/transformers/_value_type.py,sha256=6l-QxOV8u5GbhOUyo6l2BhGgNcmI_174NBltG_g2YOU,15836
|
|
246
|
+
cognite/neat/_v0/core/_issues/__init__.py,sha256=NQ-PN3fqp-hBPlpG2AZEND4cDn3_3UXAPfhLNtF5mtc,457
|
|
247
|
+
cognite/neat/_v0/core/_issues/_base.py,sha256=Ts4o_NTLS5LD6luL1B4kZPD60EiJA2ffNZfkvXOsqVY,12023
|
|
248
|
+
cognite/neat/_v0/core/_issues/_contextmanagers.py,sha256=pwNGEWDsDnQo9J2DivbGUiiYrDVHaG8xl9Nn_501zgA,1625
|
|
249
|
+
cognite/neat/_v0/core/_issues/_factory.py,sha256=Wl1ymJ5hXJW8vqewkqSibRig7RLld-3EIZcOx7BAUO0,3091
|
|
250
|
+
cognite/neat/_v0/core/_issues/formatters.py,sha256=k2h_6wHW0ve52gXeuRoEcGwrxqqSe5sYFa_HycPiqW8,3323
|
|
251
|
+
cognite/neat/_v0/core/_issues/errors/__init__.py,sha256=phjnN_vjUetHn6V1B7iQnPMvFJ9y6aKoVv67rNqZnmo,2496
|
|
252
|
+
cognite/neat/_v0/core/_issues/errors/_external.py,sha256=a4IMhqbcR7670QPjswd3J3HPjIpAZRARkbH85iiCr1s,2358
|
|
253
|
+
cognite/neat/_v0/core/_issues/errors/_general.py,sha256=zNBVJ7FKUrWY8BdsrvtUwa7J3s0ubR_e0WGJjjxmg8I,1395
|
|
254
|
+
cognite/neat/_v0/core/_issues/errors/_properties.py,sha256=W35jM_cycTBQZILcB8uIyIE9U_GEWeoOEZxc_0jnJO0,2928
|
|
255
|
+
cognite/neat/_v0/core/_issues/errors/_resources.py,sha256=WDHdhoD5BykOE2ZAqzhr6uYqBNd6GLcU0uAkzUtL1Fw,4010
|
|
256
|
+
cognite/neat/_v0/core/_issues/errors/_wrapper.py,sha256=a5rWlYELKoMt_wh88HufdfeHuQyigtc0K659mxJ2i2k,2541
|
|
257
|
+
cognite/neat/_v0/core/_issues/warnings/__init__.py,sha256=4Bw7nVq8j9q8ZI5RTPEP4NC43J5EUn5vBOpfnls4lAk,3267
|
|
258
|
+
cognite/neat/_v0/core/_issues/warnings/_external.py,sha256=wL2LAvgh4QmXWGhUmYfCRDhYX896gvYFHEfB4eOZj-E,1328
|
|
259
|
+
cognite/neat/_v0/core/_issues/warnings/_general.py,sha256=LT2uNyK6lEK8GrcVlJVEPSMTosOgKxh_XlJIkQqEjGQ,976
|
|
260
|
+
cognite/neat/_v0/core/_issues/warnings/_models.py,sha256=T75PJmtKUy2iIn7zyaxgPE7DLbLNAbNLhuSgfqwkTBo,5803
|
|
261
|
+
cognite/neat/_v0/core/_issues/warnings/_properties.py,sha256=VhJQ6X1U1iezKrd97gyMFp1l-BP9OM2eRzZd0NVO3y8,3815
|
|
262
|
+
cognite/neat/_v0/core/_issues/warnings/_resources.py,sha256=kx0j_v5899r6usUgdtfTs9qWxXrBGRpNoT4N7HMsTVo,3582
|
|
263
|
+
cognite/neat/_v0/core/_issues/warnings/user_modeling.py,sha256=5Lompr1W8UG9BjdIoxLb6ug-SP8POPnN4FacEaUOLfQ,4148
|
|
264
|
+
cognite/neat/_v0/core/_store/__init__.py,sha256=wpsF8xjIQ5V21NOh45XQV813n_EzgyPOt0VVinYjnDI,140
|
|
265
|
+
cognite/neat/_v0/core/_store/_data_model.py,sha256=8R3KhyV9vTHZLE_FwCAEBAo7ih3pjnAu9p6qHnxkFrs,19694
|
|
266
|
+
cognite/neat/_v0/core/_store/_instance.py,sha256=helzPszrD6ti4Efo0IE4fpcUxnQN7ACFG9Ok8LXRzK0,18935
|
|
267
|
+
cognite/neat/_v0/core/_store/_provenance.py,sha256=3U63x-qvNUv89c_dcKD8Lrbo4BPw-hcdHy8wfBMWn4w,7338
|
|
268
|
+
cognite/neat/_v0/core/_store/exceptions.py,sha256=ypiAiUNGVULAKE6GVcVVjpMscRyY4qjnYDV_k8jnnOk,1672
|
|
269
|
+
cognite/neat/_v0/core/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
|
+
cognite/neat/_v0/core/_utils/auth.py,sha256=RrwfhuX5ldsU9YQ767eLvWQC1xtT81OHo6yw-iDafu8,14841
|
|
271
|
+
cognite/neat/_v0/core/_utils/auxiliary.py,sha256=cUAW3_OT8hYNNoFhcdqEPyaM7TNqTkA0eUzCbCvtaNc,7116
|
|
272
|
+
cognite/neat/_v0/core/_utils/collection_.py,sha256=06avD7NaXOSlM500zmJgwWVM-suDBg-rt5sd6nHKrhA,2384
|
|
273
|
+
cognite/neat/_v0/core/_utils/graph_transformations_report.py,sha256=WRA0JrQmRYwT-2-GwbOR1ZncnNrufXt7j__CP_QRI34,1239
|
|
274
|
+
cognite/neat/_v0/core/_utils/io_.py,sha256=D2Mg8sOxfBoDg3fC0jBzaxO3vkXmr0QvZSgYIv6xRkM,386
|
|
275
|
+
cognite/neat/_v0/core/_utils/rdf_.py,sha256=6ZGR7vaRRax_hQnKiqcCk1sJx99SRia-1LdEVBJZolk,11227
|
|
276
|
+
cognite/neat/_v0/core/_utils/spreadsheet.py,sha256=PZWgJRz4j4heuvN9KpE8HqsJTkm5G3TqaTgOtWGuA2g,6410
|
|
277
|
+
cognite/neat/_v0/core/_utils/tarjan.py,sha256=IZvwaIITryGVNbo9Bv5EA9_sW3DyfUNAe7uYyPOCL0g,1357
|
|
278
|
+
cognite/neat/_v0/core/_utils/text.py,sha256=76HBjkRIod7UPZkEl8oA3Kke3LiW1Zisoh8oiNE02EE,8523
|
|
279
|
+
cognite/neat/_v0/core/_utils/time_.py,sha256=7ayUm0OWZm1JDmy32E4ip8WRr2o0GLwrHwJA8sJ43Z4,357
|
|
280
|
+
cognite/neat/_v0/core/_utils/upload.py,sha256=3w523tHvSwDPUc1FEraMZHMuvKEEIeyQB463XjrcG6Y,5872
|
|
281
|
+
cognite/neat/_v0/core/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
|
|
282
|
+
cognite/neat/_v0/core/_utils/reader/__init__.py,sha256=fPkrNB_9hLB7CyHTCFV_xEbIfOMqUQzNly5JN33-QfM,146
|
|
283
|
+
cognite/neat/_v0/core/_utils/reader/_base.py,sha256=LYTx4yVxBDRcMZKQWbBwcGL5ZECwIySXe1E123017fI,5421
|
|
284
|
+
cognite/neat/_v0/engine/__init__.py,sha256=D3MxUorEs6-NtgoICqtZ8PISQrjrr4dvca6n48bu_bI,120
|
|
285
|
+
cognite/neat/_v0/engine/_import.py,sha256=1QxA2_EK613lXYAHKQbZyw2yjo5P9XuiX4Z6_6-WMNQ,169
|
|
286
|
+
cognite/neat/_v0/engine/_interface.py,sha256=3W-cYr493c_mW3P5O6MKN1xEQg3cA7NHR_ev3zdF9Vk,533
|
|
287
|
+
cognite/neat/_v0/engine/_load.py,sha256=EaDkIrW2QeFcB8MmD7-idr19ck7qLo9Ke5Tor5vvvWM,5202
|
|
288
|
+
cognite/neat/_v0/plugins/__init__.py,sha256=acsDoiw0ztT2T-RyUIPtr8rfWpQBj4M6LmSEuAJcQjQ,209
|
|
289
|
+
cognite/neat/_v0/plugins/_base.py,sha256=zYy9b7LeDrijRHWzj_ASv4WlsSjo12Msu3DIyBW2zT8,255
|
|
290
|
+
cognite/neat/_v0/plugins/_data_model.py,sha256=y7beT2ogdIcxotiR0n1vFCqDH_FnTNY-L631fYnPRJk,2090
|
|
291
|
+
cognite/neat/_v0/plugins/_issues.py,sha256=pwKspa8Mh3seR2z8CenNbQjj7XR-w94T1_gm5Q9kVCc,944
|
|
292
|
+
cognite/neat/_v0/plugins/_manager.py,sha256=R59lBIyPJcybuhbDWR_jjRcSuSxXptMuCNlmajW8NHM,3685
|
|
293
|
+
cognite/neat/_v0/session/__init__.py,sha256=fxQ5URVlUnmEGYyB8Baw7IDq-uYacqkigbc4b-Pr9Fw,58
|
|
294
|
+
cognite/neat/_v0/session/_base.py,sha256=-Qmb-rqGxLDy64XHyl_QL5xBnvWsYgps_fkXAL3TZGU,13062
|
|
295
|
+
cognite/neat/_v0/session/_collector.py,sha256=T3qTdIeT2e0OTAaNa-Il6pn_nwLHI4e6_JOnpHSeDXk,4237
|
|
296
|
+
cognite/neat/_v0/session/_diff.py,sha256=0m5fhx-LtE2iHSEcoMyX1eyg4R339OOr_AAKwmEJd9U,1774
|
|
297
|
+
cognite/neat/_v0/session/_drop.py,sha256=tmkIeLosTXPZ6jdOLkvHCI4yIFJoTFBdI6MSHgrIHp0,4251
|
|
298
|
+
cognite/neat/_v0/session/_experimental.py,sha256=0peZPZ9JpmzQE05wHbng2tWmPPLLTAVfWZEEUhdnI6o,1274
|
|
299
|
+
cognite/neat/_v0/session/_explore.py,sha256=SumIAWQOM1RPM3KdlIc3cZnsiLhKmH-63fE6cu3MG_E,1607
|
|
300
|
+
cognite/neat/_v0/session/_fix.py,sha256=nm8DqFLfmHVSHUEDbVhyV1rP-Miwrza1nyDDzl6R9RM,927
|
|
301
|
+
cognite/neat/_v0/session/_inspect.py,sha256=hPnsh8bb3zo5H8i3oDytBswf3kLn88uPp1wbbWiPxd0,10187
|
|
302
|
+
cognite/neat/_v0/session/_mapping.py,sha256=ZyLlAdTusM_VglcMdImck4vXgejKyuytMh_0Z09nThk,2907
|
|
303
|
+
cognite/neat/_v0/session/_plugin.py,sha256=o__TCO5gz58FG5coj0wVrU4_QWcSapiV2aLPx1fUXKo,2239
|
|
304
|
+
cognite/neat/_v0/session/_prepare.py,sha256=1OUlF-1VL0b1yj8SzSJRicqtEZhdnJzrlJSt85zSEl4,12810
|
|
305
|
+
cognite/neat/_v0/session/_read.py,sha256=EcMrAUz3UhxbVjF947StRlo3P_LFc2P7c4Zn11ImjlU,35322
|
|
306
|
+
cognite/neat/_v0/session/_set.py,sha256=gmt5W2ArmJVcvoLDJzgVPd8BWxBvJWdG-XCb_sVzjF4,4625
|
|
307
|
+
cognite/neat/_v0/session/_show.py,sha256=_BvlFZ2MwdjH_mqo5jI7Jk5ykKrThGG8maxI6Mgq5d0,10763
|
|
308
|
+
cognite/neat/_v0/session/_state.py,sha256=ofoeR0SsZ7pC-9ajDNOtqGNgr1jty8hO12TF1O-_zBs,7464
|
|
309
|
+
cognite/neat/_v0/session/_subset.py,sha256=cif93E06O_SvYRrzlnbS3aVKv1Y5XrxRfUrK01Sfvl8,2864
|
|
310
|
+
cognite/neat/_v0/session/_template.py,sha256=BNcvrW5y7LWzRM1XFxZkfR1Nc7e8UgjBClHk7SMqZi4,9952
|
|
311
|
+
cognite/neat/_v0/session/_to.py,sha256=AnsRSDDdfFyYwSgi0Z-904X7WdLtPfLlR0x1xsu_jAo,19447
|
|
312
|
+
cognite/neat/_v0/session/_wizard.py,sha256=baPJgXAAF3d1bn4nbIzon1gWfJOeS5T43UXRDJEnD3c,1490
|
|
313
|
+
cognite/neat/_v0/session/exceptions.py,sha256=jv52D-SjxGfgqaHR8vnpzo0SOJETIuwbyffSWAxSDJw,3495
|
|
314
|
+
cognite/neat/_v0/session/_state/README.md,sha256=o6N7EL98lgyWffw8IoEUf2KG5uSKveD5__TW45YzVjA,902
|
|
315
|
+
cognite_neat-1.0.1.dist-info/METADATA,sha256=l7yHL8mmgURNdl9lHb2Gy6QmuUg8zaMJCYwEzUDTt8o,6030
|
|
316
|
+
cognite_neat-1.0.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
317
|
+
cognite_neat-1.0.1.dist-info/licenses/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
|
|
318
|
+
cognite_neat-1.0.1.dist-info/RECORD,,
|
cognite/neat/_session/_opt.py
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
from cognite.neat._session._usage_analytics._collector import Collector
|
|
2
|
-
from cognite.neat._session._wrappers import session_wrapper
|
|
3
|
-
from cognite.neat._store import NeatStore
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
@session_wrapper
|
|
7
|
-
class Opt:
|
|
8
|
-
"""For the user to decide if they want their usage of neat to be collected or not. We do not collect personal
|
|
9
|
-
information like name etc. only usage.
|
|
10
|
-
"""
|
|
11
|
-
|
|
12
|
-
def __init__(self, store: NeatStore) -> None:
|
|
13
|
-
self._collector = Collector()
|
|
14
|
-
self._display()
|
|
15
|
-
self._store = store
|
|
16
|
-
|
|
17
|
-
def _display(self) -> None:
|
|
18
|
-
if self._collector.is_opted_in or self._collector.is_opted_out:
|
|
19
|
-
return
|
|
20
|
-
print(
|
|
21
|
-
"For Neat to improve, we need to collect usage information. "
|
|
22
|
-
"You acknowledge and agree that neat may collect usage information."
|
|
23
|
-
"To remove this message run 'neat.opt.in_() "
|
|
24
|
-
"or to stop collecting usage information run 'neat.opt.out()'."
|
|
25
|
-
)
|
|
26
|
-
|
|
27
|
-
def in_(self) -> None:
|
|
28
|
-
"""Consent to collection of neat user insights."""
|
|
29
|
-
self._collector.enable()
|
|
30
|
-
print("You have successfully opted in to data collection.")
|
|
31
|
-
|
|
32
|
-
def out(self) -> None:
|
|
33
|
-
"""Opt out of allowing usage of neat to be collected from current user."""
|
|
34
|
-
self._collector.disable()
|
|
35
|
-
print("You have successfully opted out of data collection.")
|
cognite/neat/v1.py
DELETED