cognite-neat 0.119.7__py3-none-any.whl → 0.119.9__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.

@@ -107,12 +107,20 @@ class DMSFilter(WrappedEntity):
107
107
  (body := dumped.get(dm.filters.Equals._filter_name))
108
108
  and (value := body.get("value"))
109
109
  and isinstance(value, dict)
110
+ and (space := value.get("space"))
111
+ and (external_id := value.get("externalId"))
112
+ ):
113
+ return NodeTypeFilter(inner=[DMSNodeEntity(space=space, externalId=external_id)])
114
+ elif (
115
+ (body := dumped.get(dm.filters.In._filter_name))
116
+ and (values := body.get("values"))
117
+ and all(
118
+ [
119
+ (True if isinstance(entry, dict) and "space" in entry and "externalId" in entry else False)
120
+ for entry in values
121
+ ]
122
+ )
110
123
  ):
111
- space = value.get("space")
112
- external_id = value.get("externalId")
113
- if space is not None and external_id is not None:
114
- return NodeTypeFilter(inner=[DMSNodeEntity(space=space, externalId=external_id)])
115
- elif (body := dumped.get(dm.filters.In._filter_name)) and (values := body.get("values")):
116
124
  return NodeTypeFilter(
117
125
  inner=[
118
126
  DMSNodeEntity(space=entry["space"], externalId=entry["externalId"])
@@ -963,6 +963,7 @@ class ToSolutionModel(ToExtensionModel):
963
963
  immutable=False,
964
964
  container=container_entity,
965
965
  container_property=self.direct_property,
966
+ connection="direct",
966
967
  )
967
968
  new_containers.append(DMSContainer(container=container_entity))
968
969
  container_properties.append(property_)
@@ -16,7 +16,6 @@ from cognite.neat._rules.transformers import (
16
16
  IncludeReferenced,
17
17
  ToDataProductModel,
18
18
  ToEnterpriseModel,
19
- ToSolutionModel,
20
19
  VerifiedRulesTransformer,
21
20
  )
22
21
  from cognite.neat._utils.reader import NeatReader, PathReader
@@ -82,54 +81,6 @@ class TemplateAPI:
82
81
  self._state.last_reference = last_rules
83
82
  return issues
84
83
 
85
- def solution_model(
86
- self,
87
- data_model_id: DataModelIdentifier,
88
- direct_property: str = "enterprise",
89
- view_prefix: str = "Enterprise",
90
- ) -> IssueList:
91
- """Creates a template for a solution model based on the current data model in the session.
92
- A solution data model is for read and write of instances.
93
- The basis for a solution data model should be an enterprise data model.
94
-
95
- Args:
96
- data_model_id: The solution data model id that is being created.
97
- direct_property: The property to use for the direct connection between the views in the solution data model
98
- and the enterprise data model.
99
- view_prefix: The prefix to use for the views in the enterprise data model.
100
-
101
- What does this function do?
102
- 1. It will create two new views for each view in the current data model. The first view will be read-only and
103
- prefixed with the 'view_prefix'. The second view will be writable and have one property that connects to the
104
- read-only view named 'direct_property'.
105
- 2. It will repeat all connection properties in the new views and update the ValueTypes to match the new views.
106
- 3. Each writable view will have a container with the single property that connects to the read-only view.
107
-
108
- !!! note "Solution Data Model Mode"
109
-
110
- The read-only solution model will only be able to read from the existing containers
111
- from the enterprise data model, therefore the solution data model will not have
112
- containers in the solution data model space. Meaning the solution data model views
113
- will be read-only.
114
-
115
- The write mode will have additional containers in the solution data model space,
116
- allowing in addition to read through the solution model views, also writing to
117
- the containers in the solution data model space.
118
-
119
- """
120
- last_rules = self._state.rule_store.last_verified_rules
121
- issues = self._state.rule_transform(
122
- ToSolutionModel(
123
- new_model_id=data_model_id,
124
- properties="connection",
125
- direct_property=direct_property,
126
- view_prefix=view_prefix,
127
- )
128
- )
129
- if last_rules and not issues.has_errors:
130
- self._state.last_reference = last_rules
131
- return issues
132
-
133
84
  def data_product_model(
134
85
  self,
135
86
  data_model_id: DataModelIdentifier,
cognite/neat/_version.py CHANGED
@@ -1,2 +1,2 @@
1
- __version__ = "0.119.7"
1
+ __version__ = "0.119.9"
2
2
  __engine__ = "^2.0.4"
@@ -1,61 +1,55 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: cognite-neat
3
- Version: 0.119.7
3
+ Version: 0.119.9
4
4
  Summary: Knowledge graph transformation
5
- License: Apache-2.0
6
- Author: Nikola Vasiljevic
7
- Author-email: nikola.vasiljevic@cognite.com
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>, Rogerio Júnior <rogerio.junior@cognite.com>
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
8
12
  Requires-Python: >=3.10
9
- Classifier: License :: OSI Approved :: Apache Software License
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.10
12
- Classifier: Programming Language :: Python :: 3.11
13
- Classifier: Programming Language :: Python :: 3.12
14
- Classifier: Programming Language :: Python :: 3.13
15
- Provides-Extra: all
13
+ Requires-Dist: backports-strenum<2.0.0,>=1.2; python_version < '3.11'
14
+ Requires-Dist: cognite-sdk<8.0.0,>=7.73.4
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: jsonpath-python<2.0.0,>=1.0.6
18
+ Requires-Dist: mixpanel<5.0.0,>=4.10.1
19
+ Requires-Dist: networkx<4.0.0,>=3.4.2
20
+ Requires-Dist: openpyxl<4.0.0,>=3.0.10
21
+ Requires-Dist: packaging<25.0,>=22.0
22
+ Requires-Dist: pandas<3.0.0,>=1.5.3
23
+ Requires-Dist: pydantic<3.0.0,>=2.0.0
24
+ Requires-Dist: pyvis<1.0.0,>=0.3.2
25
+ Requires-Dist: pyyaml<7.0.0,>=6.0.1
26
+ Requires-Dist: rdflib<8.0.0,>=7.0.0
27
+ Requires-Dist: requests<3.0.0,>=2.28.1
28
+ Requires-Dist: rich[jupyter]<14.0.0,>=13.7.1
29
+ Requires-Dist: tomli<3.0.0,>=2.0.1; python_version < '3.11'
30
+ Requires-Dist: typing-extensions<5.0.0,>=4.8.0; python_version < '3.11'
31
+ Requires-Dist: urllib3<3.0.0,>=1.26.15
16
32
  Provides-Extra: docs
33
+ Requires-Dist: mistune==3.0.2; extra == 'docs'
34
+ Requires-Dist: mkdocs-autorefs<1.0.0,>=0.5.0; extra == 'docs'
35
+ Requires-Dist: mkdocs-git-authors-plugin<1.0.0,>=0.9.4; extra == 'docs'
36
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin; extra == 'docs'
37
+ Requires-Dist: mkdocs-gitbook<1.0.0,>=0.0.1; extra == 'docs'
38
+ Requires-Dist: mkdocs-glightbox<1.0.0,>=0.4.0; extra == 'docs'
39
+ Requires-Dist: mkdocs-jupyter<1.0.0,>=0.25.1; extra == 'docs'
40
+ Requires-Dist: mkdocs-material-extensions<2.0.0,>=1.3.1; extra == 'docs'
41
+ Requires-Dist: mkdocs<2.0.0,>=1.4.0; extra == 'docs'
42
+ Requires-Dist: mkdocstrings[python]<1.0.0,>=0.25.2; extra == 'docs'
43
+ Requires-Dist: pymdown-extensions<11.0.0,>=10.14.3; extra == 'docs'
17
44
  Provides-Extra: google
18
- Provides-Extra: oxi
19
- Requires-Dist: PyYAML
20
- Requires-Dist: backports.strenum (>=1.2,<2.0) ; python_version < "3.11"
21
- Requires-Dist: cognite-sdk (>=7.73.4,<8.0.0)
22
- Requires-Dist: elementpath (>=4.0.0,<5.0.0)
23
- Requires-Dist: exceptiongroup (>=1.1.3,<2.0.0) ; python_version < "3.11"
24
- Requires-Dist: google-api-python-client ; extra == "google"
25
- Requires-Dist: google-auth-oauthlib ; extra == "google"
26
- Requires-Dist: gspread ; extra == "google"
27
- Requires-Dist: jsonpath-python (>=1.0.6,<2.0.0)
28
- Requires-Dist: lxml (>=5.3.0,<6.0.0) ; extra == "all"
29
- Requires-Dist: mistune (==3.0.2) ; extra == "docs"
30
- Requires-Dist: mixpanel (>=4.10.1,<5.0.0)
31
- Requires-Dist: mkdocs ; extra == "docs"
32
- Requires-Dist: mkdocs-autorefs (>=0.5.0,<0.6.0) ; extra == "docs"
33
- Requires-Dist: mkdocs-git-authors-plugin ; extra == "docs"
34
- Requires-Dist: mkdocs-git-revision-date-localized-plugin ; extra == "docs"
35
- Requires-Dist: mkdocs-gitbook ; extra == "docs"
36
- Requires-Dist: mkdocs-glightbox ; extra == "docs"
37
- Requires-Dist: mkdocs-jupyter ; extra == "docs"
38
- Requires-Dist: mkdocs-material-extensions ; extra == "docs"
39
- Requires-Dist: mkdocstrings[python] ; extra == "docs"
40
- Requires-Dist: networkx (>=3.4.2,<4.0.0)
41
- Requires-Dist: openpyxl
42
- Requires-Dist: oxrdflib[oxigraph] (>=0.4.0,<0.5.0) ; extra == "oxi" or extra == "all"
43
- Requires-Dist: packaging (>=22.0,<25.0)
44
- Requires-Dist: pandas
45
- Requires-Dist: pydantic (>=2,<3)
46
- Requires-Dist: pymdown-extensions ; extra == "docs"
47
- Requires-Dist: pyoxigraph (==0.4.3) ; extra == "oxi" or extra == "all"
48
- Requires-Dist: pyvis (>=0.3.2,<0.4.0)
49
- Requires-Dist: rdflib
50
- Requires-Dist: requests
51
- Requires-Dist: rich[jupyter] (>=13.7.1,<14.0.0)
52
- Requires-Dist: tomli (>=2.0.1,<3.0.0) ; python_version < "3.11"
53
- Requires-Dist: typing_extensions (>=4.8,<5.0) ; python_version < "3.11"
54
- Requires-Dist: urllib3 (>=2,<3)
55
- Project-URL: Changelog, https://github.com/cognitedata/neat/releases
56
- Project-URL: Documentation, https://cognite-neat.readthedocs-hosted.com/
57
- Project-URL: GitHub, https://github.com/cognitedata/neat
58
- Project-URL: Homepage, https://cognite-neat.readthedocs-hosted.com/
45
+ Requires-Dist: google-api-python-client<3.0.0,>=2.70.0; extra == 'google'
46
+ Requires-Dist: google-auth-oauthlib<2.0.0,>=1.0.0; extra == 'google'
47
+ Requires-Dist: gspread<6.0.0,>=5.0.0; extra == 'google'
48
+ Provides-Extra: lxml
49
+ Requires-Dist: lxml<6.0.0,>=5.3.0; extra == 'lxml'
50
+ Provides-Extra: pyoxigraph
51
+ Requires-Dist: oxrdflib<0.5.0,>=0.4.0; extra == 'pyoxigraph'
52
+ Requires-Dist: pyoxigraph<0.5.0,>=0.4.3; extra == 'pyoxigraph'
59
53
  Description-Content-Type: text/markdown
60
54
 
61
55
  # kNowlEdge grAph Transformer (NEAT)
@@ -141,4 +135,3 @@ neat.read.cdf.data_model(("my_space", "MyDataModel", "v1"))
141
135
  ## Documentation
142
136
 
143
137
  For more information, see the [documentation](https://cognite-neat.readthedocs-hosted.com/en/latest/)
144
-
@@ -1,18 +1,21 @@
1
1
  cognite/neat/__init__.py,sha256=AXLMIF5t8RmjOpSaIlfqT8ltbPc__Tb8nAVbc1pkE0Q,176
2
2
  cognite/neat/_alpha.py,sha256=LvvLIpOO5OBC-fIXkhe-ghEF1uSeEYoWvwT6-ajrhQw,1219
3
+ cognite/neat/_config.py,sha256=WT1BS8uADcFvGoUYOOfwFOVq_VBl472TisdoA3wLick,280
4
+ cognite/neat/_constants.py,sha256=WO_kl74JrUWfuapEah4vC8e3SaRm4XQaTcCcws_n8AU,7382
5
+ cognite/neat/_shared.py,sha256=Ov59SWYboRRsncB_5V1ZC_BAoACfNLjo80vqE5Ru6wo,2325
6
+ cognite/neat/_version.py,sha256=05CsH7p2TthCvJ45t3ihJeIccnjR1J29paVvAkV_LME,46
7
+ cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
8
  cognite/neat/_client/__init__.py,sha256=RQ7MwL8mwGqGHokRzsPqO3XStDzmI4-c12_gz1UPJ74,177
9
+ cognite/neat/_client/_api_client.py,sha256=wsNK3abwoIppleWzVZmoXe9Ia_wrU4QqOxnxxls3ipY,714
10
+ cognite/neat/_client/testing.py,sha256=JnzLQegw2f6SATWRNDQ8Fui6qBYyz7vFgA5myjioohY,1175
4
11
  cognite/neat/_client/_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
12
  cognite/neat/_client/_api/data_modeling_loaders.py,sha256=LsB8k2erMZ3BJ_wLMIBhav7ykimLkV2QJjnbeC2xikE,39790
6
13
  cognite/neat/_client/_api/neat_instances.py,sha256=BxFmErL5FX1FVupHWsZRBsMMMT0BtExpnioiM5XOSHo,3349
7
14
  cognite/neat/_client/_api/schema.py,sha256=K8iNuTKHayHGVldMWfY8N6KWG71hOpNIklWGsAkCPMY,6925
8
- cognite/neat/_client/_api_client.py,sha256=wsNK3abwoIppleWzVZmoXe9Ia_wrU4QqOxnxxls3ipY,714
9
15
  cognite/neat/_client/data_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
16
  cognite/neat/_client/data_classes/data_modeling.py,sha256=RvpUp9ygd-yffQFJ7O2mQqMLDPIa-dmip5zPb8QVIiw,6672
11
17
  cognite/neat/_client/data_classes/neat_sequence.py,sha256=QZWSfWnwk6KlYJvsInco4Wdwc1U8DnOQKWmHebArbQY,10830
12
18
  cognite/neat/_client/data_classes/schema.py,sha256=LFRj6-noSO23bxA2I-RdRXMHHc9AHptOXlSVHj1tVHg,25047
13
- cognite/neat/_client/testing.py,sha256=JnzLQegw2f6SATWRNDQ8Fui6qBYyz7vFgA5myjioohY,1175
14
- cognite/neat/_config.py,sha256=WT1BS8uADcFvGoUYOOfwFOVq_VBl472TisdoA3wLick,280
15
- cognite/neat/_constants.py,sha256=WO_kl74JrUWfuapEah4vC8e3SaRm4XQaTcCcws_n8AU,7382
16
19
  cognite/neat/_graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
20
  cognite/neat/_graph/_shared.py,sha256=6avH6mtjxjHI7JDLkXwICxGvZwooGBr6APs1_w1To-A,940
18
21
  cognite/neat/_graph/_tracking/__init__.py,sha256=WOwsYieZtCW-iW15YkxUFrfKVVdLWdXHOGGStTwvE8A,91
@@ -24,6 +27,12 @@ cognite/neat/_graph/examples/__init__.py,sha256=yAjHVY3b5jOjmbW-iLbhvu7BG014TpGi
24
27
  cognite/neat/_graph/examples/skos-capturing-sheet-wind-topics.xlsx,sha256=CV_yK5ZSbYS_ktfIZUPD8Sevs47zpswLXQUDFkGE4Gw,45798
25
28
  cognite/neat/_graph/extractors/__init__.py,sha256=OlPnJc55utagsvRcBOt1kIiP68yeK6e2I_TX5S-do1w,2210
26
29
  cognite/neat/_graph/extractors/_base.py,sha256=qQE-fl3f1hfqZg5KLF3zLHybP0u8ofRKf4jk7pEHnl4,1907
30
+ cognite/neat/_graph/extractors/_dict.py,sha256=CmXvYkzhRjWDPEaXZAb_YyWCwJDeNzdWBkmFyc2K90s,4321
31
+ cognite/neat/_graph/extractors/_dms.py,sha256=fpr9jmJlnB9IS9sdDA7RV50e_RedF7AEVE25qLlgtp4,13810
32
+ cognite/neat/_graph/extractors/_dms_graph.py,sha256=b_OpXsLZ1xCGEWAqsF5Qk6EknZzxDbcfaZ5NOZGaYrE,9441
33
+ cognite/neat/_graph/extractors/_mock_graph_generator.py,sha256=uAGyLMxaeWBlcSFQx0nArr1ChlDF8ZR3EcLM1akwAII,15443
34
+ cognite/neat/_graph/extractors/_raw.py,sha256=xU3SmeLBCeqbs1WBdGCge8ZMnlOU6wgkKX5GRNXc0D0,2499
35
+ cognite/neat/_graph/extractors/_rdf_file.py,sha256=8BWDk1oQPzo2w2HVmGah4rppIGqihX98SBbTB1SB_6o,2900
27
36
  cognite/neat/_graph/extractors/_classic_cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
37
  cognite/neat/_graph/extractors/_classic_cdf/_assets.py,sha256=9WVFrAtUFAp_AAlb26Rtt2Axz9xsPQYetg7SKVrNCr4,1474
29
38
  cognite/neat/_graph/extractors/_classic_cdf/_base.py,sha256=2AFq8e-frKM5OlOcAH5kD_enbiUhD1JaAZXRV5x28zw,17716
@@ -35,12 +44,6 @@ cognite/neat/_graph/extractors/_classic_cdf/_labels.py,sha256=7guTZdGFT1r7ItE2VN
35
44
  cognite/neat/_graph/extractors/_classic_cdf/_relationships.py,sha256=wQDR0DFmGqXFiRHxQtQWNTVk4zVKhZzjrCfCHihXvlU,5293
36
45
  cognite/neat/_graph/extractors/_classic_cdf/_sequences.py,sha256=pkCtjH7I1Z6naWDtItHGDirqKSdCTbX_DmXwz_23VLQ,11306
37
46
  cognite/neat/_graph/extractors/_classic_cdf/_timeseries.py,sha256=6CmmxWWG2IErfNKOPhsjQ5wSOTUZZMjulpaRbHj0Q-g,1560
38
- cognite/neat/_graph/extractors/_dict.py,sha256=CmXvYkzhRjWDPEaXZAb_YyWCwJDeNzdWBkmFyc2K90s,4321
39
- cognite/neat/_graph/extractors/_dms.py,sha256=fpr9jmJlnB9IS9sdDA7RV50e_RedF7AEVE25qLlgtp4,13810
40
- cognite/neat/_graph/extractors/_dms_graph.py,sha256=b_OpXsLZ1xCGEWAqsF5Qk6EknZzxDbcfaZ5NOZGaYrE,9441
41
- cognite/neat/_graph/extractors/_mock_graph_generator.py,sha256=uAGyLMxaeWBlcSFQx0nArr1ChlDF8ZR3EcLM1akwAII,15443
42
- cognite/neat/_graph/extractors/_raw.py,sha256=xU3SmeLBCeqbs1WBdGCge8ZMnlOU6wgkKX5GRNXc0D0,2499
43
- cognite/neat/_graph/extractors/_rdf_file.py,sha256=8BWDk1oQPzo2w2HVmGah4rppIGqihX98SBbTB1SB_6o,2900
44
47
  cognite/neat/_graph/loaders/__init__.py,sha256=XS6vwmxgBzntg7UuG_ct_1hfhShVnFH5u0gGrdA8WfA,699
45
48
  cognite/neat/_graph/loaders/_base.py,sha256=Xq91-4GeQF2XN90-QgEFCU4aJabBXkeFeFXS2k4mWU4,4472
46
49
  cognite/neat/_graph/loaders/_rdf2dms.py,sha256=GD9EuZGs7ybFgTRF4Gm-VOvulny4slSsIOiRPvx7cm8,33908
@@ -59,13 +62,13 @@ cognite/neat/_issues/__init__.py,sha256=NQ-PN3fqp-hBPlpG2AZEND4cDn3_3UXAPfhLNtF5
59
62
  cognite/neat/_issues/_base.py,sha256=UDcx0s9_PqLD4z1NnOxI4wgsk2z6IiVCuJoG-V8aPyQ,11671
60
63
  cognite/neat/_issues/_contextmanagers.py,sha256=lfASjmq0wHHCJQtgChvOMFZGp_rL513baHSRXbW0ugU,1577
61
64
  cognite/neat/_issues/_factory.py,sha256=-22ptgqVeqkaL7RqaIEexhXh3Z27dFvj7Q-9D0tu-4E,2811
65
+ cognite/neat/_issues/formatters.py,sha256=k2h_6wHW0ve52gXeuRoEcGwrxqqSe5sYFa_HycPiqW8,3323
62
66
  cognite/neat/_issues/errors/__init__.py,sha256=1MK8nHFrN5c2Uiq9r4PkjL8GnBY7TGhcqGNkgQzVmKs,2359
63
67
  cognite/neat/_issues/errors/_external.py,sha256=LIze-eY3gEWEA_UmCGmknoazhKa73-ZGaHDz3xsR9DM,2349
64
68
  cognite/neat/_issues/errors/_general.py,sha256=MnBm9V1S-Agr9kUfTMvviBB4_NkuOXamlgJCu2UojEM,849
65
69
  cognite/neat/_issues/errors/_properties.py,sha256=T_nquQeEQS3DQY--DQ13acxhGX_-gpUMjWGTBKCh6r8,2536
66
70
  cognite/neat/_issues/errors/_resources.py,sha256=qndhGGPdulWpU7G4PkFHsF4Bjflf3lehGV4A0l-BeNI,3966
67
71
  cognite/neat/_issues/errors/_wrapper.py,sha256=QkAjvryW5RFZV8sSRXu-EFtnZaxH2GO5g67rxXwPFUo,2307
68
- cognite/neat/_issues/formatters.py,sha256=k2h_6wHW0ve52gXeuRoEcGwrxqqSe5sYFa_HycPiqW8,3323
69
72
  cognite/neat/_issues/warnings/__init__.py,sha256=gzDoEUMXSZ9E7sTlh7w5Bwqo82aYTGCoSvPmWpsoJuA,3010
70
73
  cognite/neat/_issues/warnings/_external.py,sha256=O5GSRmIsAC6HyToQ7itpFFNILWCAg0OehPTVUy8pTuc,1319
71
74
  cognite/neat/_issues/warnings/_general.py,sha256=nQEWlYuF3VRAb51l6TnsxpsGtUUGhR1n0bwuS_GRho4,967
@@ -93,6 +96,8 @@ cognite/neat/_rules/exporters/_validation.py,sha256=DVJGdNNU2WtAFgUg0h4SWVhveREr
93
96
  cognite/neat/_rules/importers/__init__.py,sha256=KiTNglSK6OVCdvPiGmO2dTKEGQJWT5Yxa6XWqm7YClQ,1408
94
97
  cognite/neat/_rules/importers/_base.py,sha256=yLrrOgjtkSPfLACmtRXGlHmaeGkk0kGnowregWbIPUo,1940
95
98
  cognite/neat/_rules/importers/_dms2rules.py,sha256=RyqRT7O-iEIxMeuDlVt2DcA8FQFm3Op2YvAWMTKLJjo,27524
99
+ cognite/neat/_rules/importers/_spreadsheet2rules.py,sha256=wjB7RVevjvXL3gaL1SGEW411ie76ZrFbe9fngzO-ncQ,10977
100
+ cognite/neat/_rules/importers/_yaml2rules.py,sha256=tqfHhLnlcu4iFrF5ol26lUquBoXHW95mfpmtjdTQx-Q,3896
96
101
  cognite/neat/_rules/importers/_dtdl2rules/__init__.py,sha256=CNR-sUihs2mnR1bPMKs3j3L4ds3vFTsrl6YycExZTfU,68
97
102
  cognite/neat/_rules/importers/_dtdl2rules/_unit_lookup.py,sha256=wW4saKva61Q_i17guY0dc4OseJDQfqHy_QZBtm0OD6g,12134
98
103
  cognite/neat/_rules/importers/_dtdl2rules/dtdl_converter.py,sha256=jZJEMD_RDhKK4berSfNKypfhASTMhXW3GYXHyanWTPc,11715
@@ -104,8 +109,6 @@ cognite/neat/_rules/importers/_rdf/_imf2rules.py,sha256=M5hfWZUhoCgXFlr8QNfogNCI
104
109
  cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=NSPFEe6ZLHbFTUGTpQUKivsS2POuNkk3f4LkwmLWZlY,28692
105
110
  cognite/neat/_rules/importers/_rdf/_owl2rules.py,sha256=gTMe94DC9xe8NR9KNVHTMTshg_NzVuN1v8Lz95BUshI,3392
106
111
  cognite/neat/_rules/importers/_rdf/_shared.py,sha256=nLHEXOwEs9n-4t6kIGyPJIlFMGw4VKCpU8_NBC0XLr0,5876
107
- cognite/neat/_rules/importers/_spreadsheet2rules.py,sha256=wjB7RVevjvXL3gaL1SGEW411ie76ZrFbe9fngzO-ncQ,10977
108
- cognite/neat/_rules/importers/_yaml2rules.py,sha256=tqfHhLnlcu4iFrF5ol26lUquBoXHW95mfpmtjdTQx-Q,3896
109
112
  cognite/neat/_rules/models/__init__.py,sha256=tf6tyWiYO0eC2PHCcpy208dwOHjEi9hg0sEaQLcB3uA,1024
110
113
  cognite/neat/_rules/models/_base_input.py,sha256=ZcSheXMz72w907RAcuMMupTk35zApQ8lS43As7dFVgA,6661
111
114
  cognite/neat/_rules/models/_base_rules.py,sha256=ONwBYq7YVUL4R9KL4iLhgbC2ZhGkl6HZtC9Dgx3pI5A,15460
@@ -122,7 +125,7 @@ cognite/neat/_rules/models/entities/_loaders.py,sha256=OQDbz5ANMQ_7ZcdMIBdTR94Bo
122
125
  cognite/neat/_rules/models/entities/_multi_value.py,sha256=DNoc0XUhqZhaSXoocJKL6oGOqlv_TB_oqYKp11BmD_c,2762
123
126
  cognite/neat/_rules/models/entities/_single_value.py,sha256=7VBnsnmceaOEPmMnF_bHQz8drflc7pcQYmGC39Vj8Fk,19891
124
127
  cognite/neat/_rules/models/entities/_types.py,sha256=df9rnXJJKciv2Bp-Ve2q4xdEJt6WWniq12Z0hW2d6sk,1917
125
- cognite/neat/_rules/models/entities/_wrapped.py,sha256=L8ujfOHLQxkUzuJWHgdpPUCaHbjcCdDUiKsyApS7McU,7756
128
+ cognite/neat/_rules/models/entities/_wrapped.py,sha256=6ZpVTOmx08Q1FrvSjAHuixXqp3k4fH60Wr2de-c8Z2Q,7963
126
129
  cognite/neat/_rules/models/information/__init__.py,sha256=lV7l8RTfWBvN_DFkzea8OzADjq0rZGgWe_0Fiwtfje0,556
127
130
  cognite/neat/_rules/models/information/_rules.py,sha256=eb1_uunWmEnZV0rnuGq7-GyDICJU5yvGrzQNHSGoUKE,13561
128
131
  cognite/neat/_rules/models/information/_rules_input.py,sha256=zNw8zAuidGqGxnI9Ze_KrEur94dq9d0X-NhIS5ox7r4,6244
@@ -132,7 +135,7 @@ cognite/neat/_rules/models/mapping/_classic2core.py,sha256=AhLWoXk4PlBVA6SgBtY9d
132
135
  cognite/neat/_rules/models/mapping/_classic2core.yaml,sha256=ei-nuivNWVW9HmvzDBKIPF6ZdgaMq64XHw_rKm0CMxg,22584
133
136
  cognite/neat/_rules/transformers/__init__.py,sha256=icjtZq6Hc122fEj9AGEcDB8QuF2JL6dWe4utne73naQ,1617
134
137
  cognite/neat/_rules/transformers/_base.py,sha256=9LnjKbYIf9238PQXedkTZsMXAyEND6glUD187iEaHfc,2783
135
- cognite/neat/_rules/transformers/_converters.py,sha256=-veWPRxJJGYBtExSZGlTm3obeG_AE6lSKyaaWNjlHGY,105167
138
+ cognite/neat/_rules/transformers/_converters.py,sha256=-oBTuOD7AhUo46KLGv63H7d0sWAe-izTi31_4CrUEJs,105212
136
139
  cognite/neat/_rules/transformers/_mapping.py,sha256=QVd96vMF9sGailN5hB22KGdmOU8GzFwZ7IPMD0aVCYY,18237
137
140
  cognite/neat/_rules/transformers/_verification.py,sha256=coZjoLqdfS8yrPP62T_xEKrDZc9ETbPWrLuwEVBSLZQ,4370
138
141
  cognite/neat/_session/__init__.py,sha256=fxQ5URVlUnmEGYyB8Baw7IDq-uYacqkigbc4b-Pr9Fw,58
@@ -149,15 +152,14 @@ cognite/neat/_session/_set.py,sha256=F7q1FcmJO4FnNfglFvxOP2WxAXSZ42vC3jlqt1nT1xo
149
152
  cognite/neat/_session/_show.py,sha256=9c0eUGtvN6pIX594P6hVofxDwO7lDE-N3A52htJjcv0,10546
150
153
  cognite/neat/_session/_state.py,sha256=6b0BSXm7m5-OcsF_O0A_7ec9tt8oPqH8zHImyEhVQQA,6313
151
154
  cognite/neat/_session/_subset.py,sha256=4RFGC8apNLnRSKcoDh95ksXA7zLy8vGLxEV5U0H3Hoc,2687
152
- cognite/neat/_session/_template.py,sha256=__oBxd7Zqd_TxWtEPohu17TxKrgQ_RhpHzx-FOyat_Y,11474
155
+ cognite/neat/_session/_template.py,sha256=_QnmpunL092SsL-PSq4XHbmNc6obai8tWasDJGSh3vU,9035
153
156
  cognite/neat/_session/_to.py,sha256=OSjlihit_8zxzU7PISzcMQLc4Kr9Vw18tfJb8x2cQkI,18807
154
157
  cognite/neat/_session/_wizard.py,sha256=9idlzhZy54h2Iwupe9iXKX3RDb5jJQuBZFEouni50L0,1476
158
+ cognite/neat/_session/exceptions.py,sha256=kRNKnhvOEPnF8TdcKP-lWbHvAwn-MOtGxKZdUpnJ_Q8,3239
155
159
  cognite/neat/_session/engine/__init__.py,sha256=D3MxUorEs6-NtgoICqtZ8PISQrjrr4dvca6n48bu_bI,120
156
160
  cognite/neat/_session/engine/_import.py,sha256=1QxA2_EK613lXYAHKQbZyw2yjo5P9XuiX4Z6_6-WMNQ,169
157
161
  cognite/neat/_session/engine/_interface.py,sha256=3W-cYr493c_mW3P5O6MKN1xEQg3cA7NHR_ev3zdF9Vk,533
158
162
  cognite/neat/_session/engine/_load.py,sha256=LcoYVthQyCzLWKzRE_75_nElS-n_eMWSPAgNJBnh5dA,5193
159
- cognite/neat/_session/exceptions.py,sha256=kRNKnhvOEPnF8TdcKP-lWbHvAwn-MOtGxKZdUpnJ_Q8,3239
160
- cognite/neat/_shared.py,sha256=Ov59SWYboRRsncB_5V1ZC_BAoACfNLjo80vqE5Ru6wo,2325
161
163
  cognite/neat/_state/README.md,sha256=G6my1CtTDNyIR7G3H1Is_92dHsH_dXjmJmYQb9xh_dk,898
162
164
  cognite/neat/_store/__init__.py,sha256=RrvuZrMdezqun5dOrwHWSk26kampZcvqiHBqSFumkEE,130
163
165
  cognite/neat/_store/_graph_store.py,sha256=76WypYSZg2B5QfEDf4I4KNRDetS0bKLjaRd9qO2wo6Y,17286
@@ -171,17 +173,14 @@ cognite/neat/_utils/collection_.py,sha256=JvYLSR6Cf8PIKGhr8HKRvep0U-z0980jbnIM_g
171
173
  cognite/neat/_utils/graph_transformations_report.py,sha256=rjEy4XMvOygFL4UgnYOmFW6AHxaU9IXep-dmYc5654c,1230
172
174
  cognite/neat/_utils/io_.py,sha256=D2Mg8sOxfBoDg3fC0jBzaxO3vkXmr0QvZSgYIv6xRkM,386
173
175
  cognite/neat/_utils/rdf_.py,sha256=eCN1HBuL4NvPwE2WTnkz-6evnECQ8PveLqYAcpBfA9E,9928
174
- cognite/neat/_utils/reader/__init__.py,sha256=fPkrNB_9hLB7CyHTCFV_xEbIfOMqUQzNly5JN33-QfM,146
175
- cognite/neat/_utils/reader/_base.py,sha256=PpD7OKVPTMHF6mqBY7L3XcUw3nv-drEbOzBoSSildlM,5412
176
176
  cognite/neat/_utils/spreadsheet.py,sha256=Jo1ib9RgbHkAoekO5Yu1-_nF_O6pXhsyBGNgInQwkts,5378
177
177
  cognite/neat/_utils/text.py,sha256=9T0mzcNn6J9X8DriNntLN5ThCXOWbU1BYareukbLT7A,8507
178
178
  cognite/neat/_utils/time_.py,sha256=7ayUm0OWZm1JDmy32E4ip8WRr2o0GLwrHwJA8sJ43Z4,357
179
179
  cognite/neat/_utils/upload.py,sha256=xWtM6mFuD2QYQHaZ7zCAuGptbEpPIxcH-raWQu93-Ug,5845
180
180
  cognite/neat/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
181
- cognite/neat/_version.py,sha256=wZbTCVY8SIzCWpJBek5cFVIAbUrTaPzcewG-vWBtH4g,46
182
- cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
- cognite_neat-0.119.7.dist-info/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
184
- cognite_neat-0.119.7.dist-info/METADATA,sha256=M-CuG_vT1cgYgBCQt5jV-n20j5c872-W-mHFbFfGh94,7646
185
- cognite_neat-0.119.7.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
186
- cognite_neat-0.119.7.dist-info/entry_points.txt,sha256=SsQlnl8SNMSSjE3acBI835JYFtsIinLSbVmHmMEXv6E,51
187
- cognite_neat-0.119.7.dist-info/RECORD,,
181
+ cognite/neat/_utils/reader/__init__.py,sha256=fPkrNB_9hLB7CyHTCFV_xEbIfOMqUQzNly5JN33-QfM,146
182
+ cognite/neat/_utils/reader/_base.py,sha256=PpD7OKVPTMHF6mqBY7L3XcUw3nv-drEbOzBoSSildlM,5412
183
+ cognite_neat-0.119.9.dist-info/METADATA,sha256=tLFIwsWjhiRS0OZw_YoI3hllMBl1OS0aqYh05hWXRss,7608
184
+ cognite_neat-0.119.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
185
+ cognite_neat-0.119.9.dist-info/licenses/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
186
+ cognite_neat-0.119.9.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.2
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- neat=cognite.neat._app.main:run
3
-