cognite-neat 0.85.6__py3-none-any.whl → 0.85.8__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/_version.py +1 -1
- cognite/neat/app/api/routers/data_exploration.py +2 -2
- cognite/neat/graph/extractors/_classic_cdf/_assets.py +136 -27
- cognite/neat/graph/extractors/_classic_cdf/_events.py +56 -26
- cognite/neat/graph/extractors/_classic_cdf/_files.py +73 -29
- cognite/neat/graph/extractors/_classic_cdf/_labels.py +20 -11
- cognite/neat/graph/extractors/_classic_cdf/_relationships.py +35 -20
- cognite/neat/graph/extractors/_classic_cdf/_sequences.py +60 -22
- cognite/neat/graph/extractors/_classic_cdf/_timeseries.py +78 -30
- cognite/neat/graph/extractors/_mock_graph_generator.py +6 -2
- cognite/neat/graph/loaders/_base.py +3 -3
- cognite/neat/graph/loaders/_rdf2dms.py +13 -11
- cognite/neat/graph/queries/_base.py +16 -6
- cognite/neat/graph/queries/_shared.py +2 -2
- cognite/neat/legacy/graph/extractors/_mock_graph_generator.py +4 -2
- cognite/neat/legacy/graph/loaders/_asset_loader.py +5 -5
- cognite/neat/legacy/graph/loaders/core/rdf_to_assets.py +4 -4
- cognite/neat/legacy/graph/loaders/core/rdf_to_relationships.py +2 -2
- cognite/neat/legacy/graph/transformations/query_generator/sparql.py +2 -2
- cognite/neat/legacy/graph/transformations/transformer.py +2 -2
- cognite/neat/legacy/rules/exporters/_rules2ontology.py +6 -6
- cognite/neat/legacy/rules/importers/_graph2rules.py +4 -4
- cognite/neat/legacy/rules/importers/_owl2rules/_owl2classes.py +3 -3
- cognite/neat/legacy/rules/importers/_owl2rules/_owl2properties.py +5 -5
- cognite/neat/rules/exporters/_rules2ontology.py +6 -6
- cognite/neat/rules/importers/_inference2rules.py +35 -25
- cognite/neat/rules/importers/_owl2rules/_owl2classes.py +3 -3
- cognite/neat/rules/importers/_owl2rules/_owl2properties.py +5 -5
- cognite/neat/utils/__init__.py +2 -2
- cognite/neat/utils/utils.py +6 -6
- {cognite_neat-0.85.6.dist-info → cognite_neat-0.85.8.dist-info}/METADATA +1 -1
- {cognite_neat-0.85.6.dist-info → cognite_neat-0.85.8.dist-info}/RECORD +35 -35
- {cognite_neat-0.85.6.dist-info → cognite_neat-0.85.8.dist-info}/LICENSE +0 -0
- {cognite_neat-0.85.6.dist-info → cognite_neat-0.85.8.dist-info}/WHEEL +0 -0
- {cognite_neat-0.85.6.dist-info → cognite_neat-0.85.8.dist-info}/entry_points.txt +0 -0
cognite/neat/utils/utils.py
CHANGED
|
@@ -75,14 +75,14 @@ def _get_cognite_client(config: CogniteClientConfig, credentials: CredentialProv
|
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
@overload
|
|
78
|
-
def
|
|
78
|
+
def remove_namespace_from_uri(*URI: URIRef | str, special_separator: str = "#_") -> str: ...
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
@overload
|
|
82
|
-
def
|
|
82
|
+
def remove_namespace_from_uri(*URI: tuple[URIRef | str, ...], special_separator: str = "#_") -> tuple[str, ...]: ...
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
def
|
|
85
|
+
def remove_namespace_from_uri(
|
|
86
86
|
*URI: URIRef | str | tuple[URIRef | str, ...], special_separator: str = "#_"
|
|
87
87
|
) -> tuple[str, ...] | str:
|
|
88
88
|
"""Removes namespace from URI
|
|
@@ -99,9 +99,9 @@ def remove_namespace(
|
|
|
99
99
|
|
|
100
100
|
Examples:
|
|
101
101
|
|
|
102
|
-
>>>
|
|
102
|
+
>>> remove_namespace_from_uri("http://www.example.org/index.html#section2")
|
|
103
103
|
'section2'
|
|
104
|
-
>>>
|
|
104
|
+
>>> remove_namespace_from_uri("http://www.example.org/index.html#section2", "http://www.example.org/index.html#section3")
|
|
105
105
|
('section2', 'section3')
|
|
106
106
|
"""
|
|
107
107
|
if isinstance(URI, str | URIRef):
|
|
@@ -149,7 +149,7 @@ def get_namespace(URI: URIRef, special_separator: str = "#_") -> str:
|
|
|
149
149
|
|
|
150
150
|
def as_neat_compliant_uri(uri: URIRef) -> URIRef:
|
|
151
151
|
namespace = get_namespace(uri)
|
|
152
|
-
id_ =
|
|
152
|
+
id_ = remove_namespace_from_uri(uri)
|
|
153
153
|
compliant_uri = re.sub(r"[^a-zA-Z0-9-_.]", "", id_)
|
|
154
154
|
return URIRef(f"{namespace}{compliant_uri}")
|
|
155
155
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
cognite/neat/__init__.py,sha256=AiexNcHdAHFbrrbo9c65gtil1dqx_SGraDH1PSsXjKE,126
|
|
2
2
|
cognite/neat/_shared.py,sha256=RSaHm2eJceTlvb-hMMe4nHgoHdPYDfN3XcxDXo24k3A,1530
|
|
3
|
-
cognite/neat/_version.py,sha256=
|
|
3
|
+
cognite/neat/_version.py,sha256=XNxvWbbG3Du3rtKNhMT-MnhnUVoPrUHeH989x6qqhYo,23
|
|
4
4
|
cognite/neat/app/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
cognite/neat/app/api/asgi/metrics.py,sha256=nxFy7L5cChTI0a-zkCiJ59Aq8yLuIJp5c9Dg0wRXtV0,152
|
|
6
6
|
cognite/neat/app/api/configuration.py,sha256=2U5M6M252swvQPQyooA1EBzFUZNtcTmuSaywfJDgckM,4232
|
|
@@ -12,7 +12,7 @@ cognite/neat/app/api/explorer.py,sha256=OlLI-RbQGjXEuDgtmFfBuTXfnRVemTJDKbL9VvXL
|
|
|
12
12
|
cognite/neat/app/api/routers/configuration.py,sha256=rg9GihPPYjgNj1n_wWqfASO4iMXWh_US5sgNJCwejCE,585
|
|
13
13
|
cognite/neat/app/api/routers/core.py,sha256=cHMX0JoxFHQB65VkFCvOprSkO8tFydECYtVFfRq9yfE,3523
|
|
14
14
|
cognite/neat/app/api/routers/crud.py,sha256=VCQMjvcLosELkmMZRiunyd-RK5sltQFjcCSrGk5kwXc,4597
|
|
15
|
-
cognite/neat/app/api/routers/data_exploration.py,sha256=
|
|
15
|
+
cognite/neat/app/api/routers/data_exploration.py,sha256=243dZcMJU-ZE-pSu2oIJMbQQmpyo-74i4Vtd7d1mgbg,13704
|
|
16
16
|
cognite/neat/app/api/routers/metrics.py,sha256=S_bUQk_GjfQq7WbEhSVdow4MUYBZ_bZNafzgcKogXK8,210
|
|
17
17
|
cognite/neat/app/api/routers/rules.py,sha256=MECSzurNe7y07-GfsggBDmfNtYkFuLdAm9ogSjLbzzk,8121
|
|
18
18
|
cognite/neat/app/api/routers/workflows.py,sha256=fPqNT0swH-sfcjD8PLK5NzKY1sVSU7GaCMkHfH78gxw,12393
|
|
@@ -57,27 +57,27 @@ cognite/neat/graph/exceptions.py,sha256=R6pyOH774n9w2x_X_nrUr8OMAdjJMf_XPIqAvxIQ
|
|
|
57
57
|
cognite/neat/graph/extractors/__init__.py,sha256=nXcNp6i3-1HteIkr8Ujxk4b09W5jk27Q3eWuwjcnGnM,1647
|
|
58
58
|
cognite/neat/graph/extractors/_base.py,sha256=8IWygpkQTwo0UOmbbwWVI7540_klTVdUVX2JjVPFRIs,498
|
|
59
59
|
cognite/neat/graph/extractors/_classic_cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
-
cognite/neat/graph/extractors/_classic_cdf/_assets.py,sha256=
|
|
61
|
-
cognite/neat/graph/extractors/_classic_cdf/_events.py,sha256=
|
|
62
|
-
cognite/neat/graph/extractors/_classic_cdf/_files.py,sha256=
|
|
63
|
-
cognite/neat/graph/extractors/_classic_cdf/_labels.py,sha256=
|
|
64
|
-
cognite/neat/graph/extractors/_classic_cdf/_relationships.py,sha256=
|
|
65
|
-
cognite/neat/graph/extractors/_classic_cdf/_sequences.py,sha256=
|
|
66
|
-
cognite/neat/graph/extractors/_classic_cdf/_timeseries.py,sha256=
|
|
60
|
+
cognite/neat/graph/extractors/_classic_cdf/_assets.py,sha256=ZLLiHlN0RB4Drx0b0uBLLiV8gowlMleamRBSKUrCgyI,7854
|
|
61
|
+
cognite/neat/graph/extractors/_classic_cdf/_events.py,sha256=UiysU7AGlWMQuEMObaJN1JvMNWWtXmjBzFsk3SLg8V4,5112
|
|
62
|
+
cognite/neat/graph/extractors/_classic_cdf/_files.py,sha256=TPjDF6VfRImhrJlfFNne3Plm6NmrGwtaGKqP_vZ8s6Y,6289
|
|
63
|
+
cognite/neat/graph/extractors/_classic_cdf/_labels.py,sha256=9DQ1hblU3gbLTbWuthKLWkSL_eNH69izitzMSQ1FdD8,3011
|
|
64
|
+
cognite/neat/graph/extractors/_classic_cdf/_relationships.py,sha256=GzxnvIflmHVnWdlNFoLrnxJjM8c2YuMzzMC7IL7Q4cg,6040
|
|
65
|
+
cognite/neat/graph/extractors/_classic_cdf/_sequences.py,sha256=3L2c7z1I4LQZYgA8CScsOGfvamIdCc19I5ZIzPVVgsM,4680
|
|
66
|
+
cognite/neat/graph/extractors/_classic_cdf/_timeseries.py,sha256=HCUjTTLqj9rTxb7xemyxNXYRqsKVUzRAXi0BLyo2Ctc,6125
|
|
67
67
|
cognite/neat/graph/extractors/_dexpi.py,sha256=xIw3kSaQ17k_bAuecvrVRic70PUhFHtcyy-ReLt36Q4,9385
|
|
68
|
-
cognite/neat/graph/extractors/_mock_graph_generator.py,sha256=
|
|
68
|
+
cognite/neat/graph/extractors/_mock_graph_generator.py,sha256=w6lIgwvVwkvK725S9MLFZU8lLxjxXt_621_nChupAkQ,14791
|
|
69
69
|
cognite/neat/graph/extractors/_rdf_file.py,sha256=ialMCLv9WH5k6v1YMfozfcmAYhz8OVo9jVhsKMyQkDA,763
|
|
70
70
|
cognite/neat/graph/issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
71
|
cognite/neat/graph/issues/loader.py,sha256=v8YDsehkUT1QUG61JM9BDV_lqowMUnDmGmbay0aFzN4,3085
|
|
72
72
|
cognite/neat/graph/loaders/__init__.py,sha256=BteVkTklPVUB2W-bbzZug-cEUrx8ZFA-YcQPSxWVpTI,678
|
|
73
|
-
cognite/neat/graph/loaders/_base.py,sha256=
|
|
73
|
+
cognite/neat/graph/loaders/_base.py,sha256=yIXJ7H5VeVb_mqMCM36BYyEOQMbIZcV60RxqD-Xrj-Y,3032
|
|
74
74
|
cognite/neat/graph/loaders/_rdf2asset.py,sha256=aFby7BwIrW253LEJ4XqGeUuf4jG9VUe8Lg7OlUnXMlM,4493
|
|
75
|
-
cognite/neat/graph/loaders/_rdf2dms.py,sha256=
|
|
75
|
+
cognite/neat/graph/loaders/_rdf2dms.py,sha256=2PCL8De02xlEkTmgG299k5tiZcKPnoNzCQfI1AgS2Gg,14060
|
|
76
76
|
cognite/neat/graph/models.py,sha256=AtLgZh2qyRP6NRetjQCy9qLMuTQB0CH52Zsev-qa2sk,149
|
|
77
77
|
cognite/neat/graph/queries/__init__.py,sha256=BgDd-037kvtWwAoGAy8eORVNMiZ5-E9sIV0txIpeaN4,50
|
|
78
|
-
cognite/neat/graph/queries/_base.py,sha256=
|
|
78
|
+
cognite/neat/graph/queries/_base.py,sha256=RL6YQu4apWG-WM-b1TDu5IKqsvskE6Cvlmo8rr1Trhk,5199
|
|
79
79
|
cognite/neat/graph/queries/_construct.py,sha256=FxzSQqzCpo7lKVYerlLAY03oqCeFM5L6MozfBUblzr4,7341
|
|
80
|
-
cognite/neat/graph/queries/_shared.py,sha256=
|
|
80
|
+
cognite/neat/graph/queries/_shared.py,sha256=1-cBnoqyHQazOdNc7J5kk-_GrlHSSnYsBdNJcRD5QyI,5061
|
|
81
81
|
cognite/neat/graph/stores/__init__.py,sha256=G-VG_YwfRt1kuPao07PDJyZ3w_0-eguzLUM13n-Z_RA,64
|
|
82
82
|
cognite/neat/graph/stores/_base.py,sha256=z69uhzBhzl1JQJU9U-h9zAyySn25ZQTJRXam4BavnoY,10586
|
|
83
83
|
cognite/neat/graph/stores/_oxrdflib.py,sha256=A5zeRm5_e8ui_ihGpgstRDg_N7qcLZ3QZBRGrOXSGI0,9569
|
|
@@ -97,16 +97,16 @@ cognite/neat/legacy/graph/extractors/__init__.py,sha256=wqCiqz-sXhUpTL5LRcrl_KFT
|
|
|
97
97
|
cognite/neat/legacy/graph/extractors/_base.py,sha256=ohiuEzwZ1Fh9ers07MCbjGOGQ0HLb-ctwgEvGy7o_AQ,363
|
|
98
98
|
cognite/neat/legacy/graph/extractors/_dexpi.py,sha256=KIGkMYFGRSp86DASARSk77z-qzHqf-MMZkgZjq3rRWw,1613
|
|
99
99
|
cognite/neat/legacy/graph/extractors/_graph_capturing_sheet.py,sha256=sEV6P4a4OlFx_O-vtKoB1H-ex1RnD5VhqmBcazGfLwk,17695
|
|
100
|
-
cognite/neat/legacy/graph/extractors/_mock_graph_generator.py,sha256=
|
|
100
|
+
cognite/neat/legacy/graph/extractors/_mock_graph_generator.py,sha256=v_nEpNmrpUiA3SZpv37NFjKweS8DX4ahyy-9VCfg4Bc,14956
|
|
101
101
|
cognite/neat/legacy/graph/loaders/__init__.py,sha256=Nap1LGaXA3AotL5U6pwY1Yc3J92Y7GC60qVPBhGl5LA,701
|
|
102
|
-
cognite/neat/legacy/graph/loaders/_asset_loader.py,sha256=
|
|
102
|
+
cognite/neat/legacy/graph/loaders/_asset_loader.py,sha256=UqjUm7aU826pONywpUCbdGNYdpL0uUOKdOTXhvRHaZY,23868
|
|
103
103
|
cognite/neat/legacy/graph/loaders/_base.py,sha256=oj1vo8dGPXxJORQXPa_kJa5G53VZBXOiIoWOngtMw5E,2383
|
|
104
104
|
cognite/neat/legacy/graph/loaders/_exceptions.py,sha256=Ep59S5ExVG7phHpfcMEpHu82ApLbkIlvfQnWAt5p1sE,2835
|
|
105
105
|
cognite/neat/legacy/graph/loaders/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
106
|
cognite/neat/legacy/graph/loaders/core/labels.py,sha256=z_03w35RcAWtJFVV94jCobHlT1d2AfoJa8FgMSrHBeA,2321
|
|
107
107
|
cognite/neat/legacy/graph/loaders/core/models.py,sha256=47KwgRuMAwTbDwPC_yRmyhhOVvqTiwgApQEPCFlmU24,5023
|
|
108
|
-
cognite/neat/legacy/graph/loaders/core/rdf_to_assets.py,sha256=
|
|
109
|
-
cognite/neat/legacy/graph/loaders/core/rdf_to_relationships.py,sha256=
|
|
108
|
+
cognite/neat/legacy/graph/loaders/core/rdf_to_assets.py,sha256=6ZzXwFWSQt8TFDC8osvk8kY2nuIRgtTS60Q1Bb-9Kz0,40502
|
|
109
|
+
cognite/neat/legacy/graph/loaders/core/rdf_to_relationships.py,sha256=sc_a42LqANgxdVurjt-9jQll3hMr_xvDG8lfJ9-O6fA,22725
|
|
110
110
|
cognite/neat/legacy/graph/loaders/rdf_to_dms.py,sha256=v1Fjsf69RCxDo_YdYNJBgsmxy5sbmjIYONQKiSUAstI,12979
|
|
111
111
|
cognite/neat/legacy/graph/loaders/validator.py,sha256=JiEp3gJUzJ8JIbb2crFfFCZ_3cGviXbb31aGusXAM_Y,3328
|
|
112
112
|
cognite/neat/legacy/graph/models.py,sha256=AtLgZh2qyRP6NRetjQCy9qLMuTQB0CH52Zsev-qa2sk,149
|
|
@@ -120,8 +120,8 @@ cognite/neat/legacy/graph/stores/_rdf_to_graph.py,sha256=1ezWHTPn9UkIsAlxZcYRlqW
|
|
|
120
120
|
cognite/neat/legacy/graph/transformations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
121
|
cognite/neat/legacy/graph/transformations/entity_matcher.py,sha256=CakXdgGMYXnyaihE1fFGWNcXSDuOV5F454m8URt00Rw,4765
|
|
122
122
|
cognite/neat/legacy/graph/transformations/query_generator/__init__.py,sha256=9N7RIlM8Pf-mJXzK8ulBe-eAa3yeHYBsBFQF7geTgWE,73
|
|
123
|
-
cognite/neat/legacy/graph/transformations/query_generator/sparql.py,sha256=
|
|
124
|
-
cognite/neat/legacy/graph/transformations/transformer.py,sha256=
|
|
123
|
+
cognite/neat/legacy/graph/transformations/query_generator/sparql.py,sha256=RtDdnqxB7-5qXHnMxYK18SeJ5-8JPwm8zALqrJjpQtc,18737
|
|
124
|
+
cognite/neat/legacy/graph/transformations/transformer.py,sha256=Xb6LjDsxT5SRUTs6RhZyiE1AlKplhUKkwIfmBxkcp8s,14755
|
|
125
125
|
cognite/neat/legacy/rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
126
|
cognite/neat/legacy/rules/analysis.py,sha256=-PWaFqzvMlUA6nrZissMvoQm8xwFqniIDApZSUWs9sA,8610
|
|
127
127
|
cognite/neat/legacy/rules/examples/Rules-Nordic44-to-graphql.xlsx,sha256=KxiQxBdBWaXYvVAwUwVSazpDjHaG8CXamg24ZUf9Nqw,80404
|
|
@@ -143,7 +143,7 @@ cognite/neat/legacy/rules/exporters/_core/rules2labels.py,sha256=CDcSwR7TsUGEIsY
|
|
|
143
143
|
cognite/neat/legacy/rules/exporters/_rules2dms.py,sha256=13CptTLvY9ghcrLPhumUOg6PeeIZHFDjXjNDSQPK5B8,36813
|
|
144
144
|
cognite/neat/legacy/rules/exporters/_rules2excel.py,sha256=ytHsqw2j26T9yLNZHuUSItV8Jp3AvvpIwX8D5-L9GO8,8312
|
|
145
145
|
cognite/neat/legacy/rules/exporters/_rules2graphql.py,sha256=oXBU5z-qFyxG7MW83HYlW-hazhDDNAPKAbJJcsZfcU4,6251
|
|
146
|
-
cognite/neat/legacy/rules/exporters/_rules2ontology.py,sha256=
|
|
146
|
+
cognite/neat/legacy/rules/exporters/_rules2ontology.py,sha256=9rjVjLi6rbPhlRrIyJVzPBJ4piFnsEKaB4uVitokXaY,18539
|
|
147
147
|
cognite/neat/legacy/rules/exporters/_rules2pydantic_models.py,sha256=YqiyTzAD0vEEhLbIPNTkK0AzKUG0yfBjz47Rg1mSTq8,28949
|
|
148
148
|
cognite/neat/legacy/rules/exporters/_rules2rules.py,sha256=KlBm1hWkx4Ly5G-_gdcURUwADolMJFnueus02IW51uQ,3881
|
|
149
149
|
cognite/neat/legacy/rules/exporters/_rules2triples.py,sha256=ItkLy6Rji4g5UqLtxaOeodGUvpQG-LVr_ss70PcCPZs,1085
|
|
@@ -152,12 +152,12 @@ cognite/neat/legacy/rules/importers/__init__.py,sha256=h1owL8pBPEtOmlIFAdkqAABH1
|
|
|
152
152
|
cognite/neat/legacy/rules/importers/_base.py,sha256=L0eMYB-Lf5sssQmXAd9ZlUzT6vcAIMeEvM833bMYn0w,2273
|
|
153
153
|
cognite/neat/legacy/rules/importers/_dict2rules.py,sha256=scUoMMZoc0CEfsbU999cPMyG1hMzNRDTovj8ff8Lrhk,6476
|
|
154
154
|
cognite/neat/legacy/rules/importers/_dms2rules.py,sha256=0MbqBQT1oTm2ekxtPXYKHXbFGxVRWTIiufzodmFKOvw,7697
|
|
155
|
-
cognite/neat/legacy/rules/importers/_graph2rules.py,sha256=
|
|
155
|
+
cognite/neat/legacy/rules/importers/_graph2rules.py,sha256=FTP28hI3gbZyCxGBW9aJwW0SZnNG2HR5Skn-9dYAJI0,12215
|
|
156
156
|
cognite/neat/legacy/rules/importers/_json2rules.py,sha256=ko0sC3-xO3ne_PQn5aF0L5SsA8m48SN2bnqmBgjkylc,1610
|
|
157
157
|
cognite/neat/legacy/rules/importers/_owl2rules/__init__.py,sha256=tdGcrgtozdQyST-pTlxIa4cLBNTLvtk1nNYR4vOdFSw,63
|
|
158
|
-
cognite/neat/legacy/rules/importers/_owl2rules/_owl2classes.py,sha256=
|
|
158
|
+
cognite/neat/legacy/rules/importers/_owl2rules/_owl2classes.py,sha256=OlOttWnmbez353_Oc6zgjZtgBC7zMrfoZqyUCtDiyx0,8331
|
|
159
159
|
cognite/neat/legacy/rules/importers/_owl2rules/_owl2metadata.py,sha256=1glhaiJA0AuBxTgUQBgKPuFUqI-0fVmbVIZnxe8OrDY,9407
|
|
160
|
-
cognite/neat/legacy/rules/importers/_owl2rules/_owl2properties.py,sha256=
|
|
160
|
+
cognite/neat/legacy/rules/importers/_owl2rules/_owl2properties.py,sha256=FLg2ICJiHr3HYIYuxUIopyzzcIGDkgUMgIL_vkSlOOI,8064
|
|
161
161
|
cognite/neat/legacy/rules/importers/_owl2rules/_owl2rules.py,sha256=SnfR2ZuJlrnwWTuSNNu4cQTazj2DoYdTHSEZpax1QSg,10557
|
|
162
162
|
cognite/neat/legacy/rules/importers/_spreadsheet2rules.py,sha256=gaDlCqB7M0j0rud-awjlunvBOQlgbK912wabsSBqpsc,1502
|
|
163
163
|
cognite/neat/legacy/rules/importers/_xsd2rules.py,sha256=ZR_FAzZUgfZVEFLEVDDJIH4GIsxo7y7-KdozVeyYlS0,421
|
|
@@ -192,7 +192,7 @@ cognite/neat/rules/exporters/__init__.py,sha256=nRMUBUf7yr1QPjyITeX2rTLtLLawHv24
|
|
|
192
192
|
cognite/neat/rules/exporters/_base.py,sha256=qZt236sNKTbiM41sgVEYcEtuK5v8Pt14LMLBNiZrNWs,1936
|
|
193
193
|
cognite/neat/rules/exporters/_rules2dms.py,sha256=xK9xXJ7lLQnzrRlBUJQVLlY4SC-vnnjGUXOzaWvOKmY,14553
|
|
194
194
|
cognite/neat/rules/exporters/_rules2excel.py,sha256=bVYq0zmMLDEzSDD39_DQOL6rFGBgRMq5lE7xVMAg8i8,14328
|
|
195
|
-
cognite/neat/rules/exporters/_rules2ontology.py,sha256=
|
|
195
|
+
cognite/neat/rules/exporters/_rules2ontology.py,sha256=h5akLKnhVxRfIiOredA3ILqD4qr-qizyP0gd6oNmswo,20608
|
|
196
196
|
cognite/neat/rules/exporters/_rules2yaml.py,sha256=GA8eUYRxUfIU6IMvlyGO5JidkOD5eUKSbH3qAiFiaCg,3026
|
|
197
197
|
cognite/neat/rules/exporters/_validation.py,sha256=OlKIyf4nhSDehJwFHDQ8Zdf6HpNfW7dSe2s67eywHu4,4078
|
|
198
198
|
cognite/neat/rules/importers/__init__.py,sha256=Vxl2Iq1dMXUsI6Wb411xPI3rromdq50xZUci-S8faSw,1097
|
|
@@ -203,11 +203,11 @@ cognite/neat/rules/importers/_dtdl2rules/_unit_lookup.py,sha256=wW4saKva61Q_i17g
|
|
|
203
203
|
cognite/neat/rules/importers/_dtdl2rules/dtdl_converter.py,sha256=ysmWUxZ0npwrTB0uiH5jA0v37sfCwowGaYk17IyxPUU,12663
|
|
204
204
|
cognite/neat/rules/importers/_dtdl2rules/dtdl_importer.py,sha256=Psj3C2jembY_Wu7WWJIFIwrMawvjISjeqfBnoRy_csw,6740
|
|
205
205
|
cognite/neat/rules/importers/_dtdl2rules/spec.py,sha256=tim_MfN1J0F3Oeqk3BMgIA82d_MZvhRuRMsLK3B4PYc,11897
|
|
206
|
-
cognite/neat/rules/importers/_inference2rules.py,sha256=
|
|
206
|
+
cognite/neat/rules/importers/_inference2rules.py,sha256=S_U2M8z5oZaFD3yPDSG__xUJSCmFkQyrKleHixrzYlU,12204
|
|
207
207
|
cognite/neat/rules/importers/_owl2rules/__init__.py,sha256=tdGcrgtozdQyST-pTlxIa4cLBNTLvtk1nNYR4vOdFSw,63
|
|
208
|
-
cognite/neat/rules/importers/_owl2rules/_owl2classes.py,sha256=
|
|
208
|
+
cognite/neat/rules/importers/_owl2rules/_owl2classes.py,sha256=dACjYeCa_OhpQgqccI4w478dEINbISUMzpVkCOoRRL8,7384
|
|
209
209
|
cognite/neat/rules/importers/_owl2rules/_owl2metadata.py,sha256=nwnUaBNAAYMoBre2UmsnkJXUuaqGEpR3U3txDrH2w6g,7527
|
|
210
|
-
cognite/neat/rules/importers/_owl2rules/_owl2properties.py,sha256=
|
|
210
|
+
cognite/neat/rules/importers/_owl2rules/_owl2properties.py,sha256=3-yiCyh5In7jLhIytEK7ktG9suuv6QMa5xCs2TQvHZM,7342
|
|
211
211
|
cognite/neat/rules/importers/_owl2rules/_owl2rules.py,sha256=41_wZFvt0A6TI55zlT04oQkvU7V73li4aGLgc4T4Lxo,6358
|
|
212
212
|
cognite/neat/rules/importers/_spreadsheet2rules.py,sha256=vyYXNvP64dBGTWRWfrg7wtUcs0PdPiGLAHwE8itItAA,13072
|
|
213
213
|
cognite/neat/rules/importers/_yaml2rules.py,sha256=F0uksSz1A3po5OlRM2152_w5j8D9oYTLB9NFTkSMlWI,4275
|
|
@@ -250,7 +250,7 @@ cognite/neat/rules/models/information/_rules_input.py,sha256=1aVaF7VrqaLR-NOq4RR
|
|
|
250
250
|
cognite/neat/rules/models/information/_serializer.py,sha256=yti9I_xJruxrib66YIBInhze___Io-oPTQH6uWDumPE,3503
|
|
251
251
|
cognite/neat/rules/models/information/_validation.py,sha256=K4RTd1I8jrqTHUaPFtAQ8bvS8a4ES9efqXRqQX9wQ8I,8258
|
|
252
252
|
cognite/neat/rules/models/wrapped_entities.py,sha256=ThhjnNNrpgz0HeORIQ8Q894trxP73P7T_TuZj6qH2CU,7157
|
|
253
|
-
cognite/neat/utils/__init__.py,sha256=
|
|
253
|
+
cognite/neat/utils/__init__.py,sha256=xVSUPJx1FWz3KJzcp6E1KQopKT0TrK3eAAzCw8S4r-0,86
|
|
254
254
|
cognite/neat/utils/auth.py,sha256=rBzx92IN4xGj3UK95UExKlK2dCwQi3svTZ_YBMWaTVo,11739
|
|
255
255
|
cognite/neat/utils/auxiliary.py,sha256=IOVbr6lPQulMJUyrrhfSsF6lIHch0Aw6KszMkBomprc,1248
|
|
256
256
|
cognite/neat/utils/cdf.py,sha256=piRx-6GRz4cCfBZD5rU0OM6ixQ3cj5TMzI0yCYUveR8,2422
|
|
@@ -264,7 +264,7 @@ cognite/neat/utils/exceptions.py,sha256=-w4cAcvcoWLf-_ZwAl7QV_NysfqtQzIOd1Ti-mpx
|
|
|
264
264
|
cognite/neat/utils/spreadsheet.py,sha256=LI0c7dlW0zXHkHw0NvB-gg6Df6cDcE3FbiaHBYLXdzQ,2714
|
|
265
265
|
cognite/neat/utils/text.py,sha256=4bg1_Q0lg7KsoxaDOvXrVyeY78BJN8i-27BlyDzUCls,3082
|
|
266
266
|
cognite/neat/utils/upload.py,sha256=nZEuDu22A1kTbl-ctzAJ2vx1cjiQtqdDdpC_mRRMvUI,3597
|
|
267
|
-
cognite/neat/utils/utils.py,sha256=
|
|
267
|
+
cognite/neat/utils/utils.py,sha256=vtrBrjMqLIdPuIPEY9MwEEvzeu7vm-regFcU8y4pzeI,14226
|
|
268
268
|
cognite/neat/utils/xml_.py,sha256=ppLT3lQKVp8wOP-m8-tFY8uB2P4R76l7R_-kUtsABng,992
|
|
269
269
|
cognite/neat/workflows/__init__.py,sha256=oiKub_U9f5cA0I1nKl5dFkR4BD8_6Be9eMzQ_50PwP0,396
|
|
270
270
|
cognite/neat/workflows/_exceptions.py,sha256=ugI_X1XNpikAiL8zIggBjcx6q7WvOpRIgvxHrj2Rhr4,1348
|
|
@@ -310,8 +310,8 @@ cognite/neat/workflows/steps_registry.py,sha256=fkTX14ZA7_gkUYfWIlx7A1XbCidvqR23
|
|
|
310
310
|
cognite/neat/workflows/tasks.py,sha256=dqlJwKAb0jlkl7abbY8RRz3m7MT4SK8-7cntMWkOYjw,788
|
|
311
311
|
cognite/neat/workflows/triggers.py,sha256=_BLNplzoz0iic367u1mhHMHiUrCwP-SLK6_CZzfODX0,7071
|
|
312
312
|
cognite/neat/workflows/utils.py,sha256=gKdy3RLG7ctRhbCRwaDIWpL9Mi98zm56-d4jfHDqP1E,453
|
|
313
|
-
cognite_neat-0.85.
|
|
314
|
-
cognite_neat-0.85.
|
|
315
|
-
cognite_neat-0.85.
|
|
316
|
-
cognite_neat-0.85.
|
|
317
|
-
cognite_neat-0.85.
|
|
313
|
+
cognite_neat-0.85.8.dist-info/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
|
|
314
|
+
cognite_neat-0.85.8.dist-info/METADATA,sha256=LMGF9Z866Ni01TGc12LHk09EjNbbSxjiZS-gzMtvGsY,9493
|
|
315
|
+
cognite_neat-0.85.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
316
|
+
cognite_neat-0.85.8.dist-info/entry_points.txt,sha256=61FPqiWb25vbqB0KI7znG8nsg_ibLHBvTjYnkPvNFso,50
|
|
317
|
+
cognite_neat-0.85.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|