cognite-neat 0.92.3__py3-none-any.whl → 0.93.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cognite-neat might be problematic. Click here for more details.

Files changed (289) hide show
  1. cognite/neat/__init__.py +3 -2
  2. cognite/neat/{app → _app}/api/configuration.py +9 -7
  3. cognite/neat/_app/api/context_manager/__init__.py +3 -0
  4. cognite/neat/{app → _app}/api/context_manager/manager.py +1 -1
  5. cognite/neat/{app → _app}/api/explorer.py +5 -5
  6. cognite/neat/{app → _app}/api/routers/configuration.py +2 -2
  7. cognite/neat/{app → _app}/api/routers/crud.py +4 -4
  8. cognite/neat/{app → _app}/api/routers/workflows.py +7 -7
  9. cognite/neat/{app → _app}/main.py +1 -1
  10. cognite/neat/_app/ui/neat-app/package-lock.json +18306 -0
  11. cognite/neat/_app/ui/neat-app/package.json +62 -0
  12. cognite/neat/_app/ui/neat-app/public/favicon.ico +0 -0
  13. cognite/neat/_app/ui/neat-app/public/img/architect-icon.svg +116 -0
  14. cognite/neat/_app/ui/neat-app/public/img/developer-icon.svg +112 -0
  15. cognite/neat/_app/ui/neat-app/public/img/sme-icon.svg +34 -0
  16. cognite/neat/_app/ui/neat-app/public/index.html +43 -0
  17. cognite/neat/_app/ui/neat-app/public/logo192.png +0 -0
  18. cognite/neat/_app/ui/neat-app/public/manifest.json +25 -0
  19. cognite/neat/_app/ui/neat-app/public/robots.txt +3 -0
  20. cognite/neat/_app/ui/neat-app/src/App.css +38 -0
  21. cognite/neat/_app/ui/neat-app/src/App.js +17 -0
  22. cognite/neat/_app/ui/neat-app/src/App.test.js +8 -0
  23. cognite/neat/_app/ui/neat-app/src/MainContainer.tsx +70 -0
  24. cognite/neat/_app/ui/neat-app/src/components/JsonViewer.tsx +43 -0
  25. cognite/neat/_app/ui/neat-app/src/components/LocalUploader.tsx +124 -0
  26. cognite/neat/_app/ui/neat-app/src/components/OverviewComponentEditorDialog.tsx +63 -0
  27. cognite/neat/_app/ui/neat-app/src/components/StepEditorDialog.tsx +511 -0
  28. cognite/neat/_app/ui/neat-app/src/components/TabPanel.tsx +36 -0
  29. cognite/neat/_app/ui/neat-app/src/components/Utils.tsx +56 -0
  30. cognite/neat/_app/ui/neat-app/src/components/WorkflowDeleteDialog.tsx +60 -0
  31. cognite/neat/_app/ui/neat-app/src/components/WorkflowExecutionReport.tsx +112 -0
  32. cognite/neat/_app/ui/neat-app/src/components/WorkflowImportExportDialog.tsx +67 -0
  33. cognite/neat/_app/ui/neat-app/src/components/WorkflowMetadataDialog.tsx +79 -0
  34. cognite/neat/_app/ui/neat-app/src/index.css +13 -0
  35. cognite/neat/_app/ui/neat-app/src/index.js +13 -0
  36. cognite/neat/_app/ui/neat-app/src/logo.svg +1 -0
  37. cognite/neat/_app/ui/neat-app/src/reportWebVitals.js +13 -0
  38. cognite/neat/_app/ui/neat-app/src/setupTests.js +5 -0
  39. cognite/neat/_app/ui/neat-app/src/types/WorkflowTypes.ts +388 -0
  40. cognite/neat/_app/ui/neat-app/src/views/AboutView.tsx +61 -0
  41. cognite/neat/_app/ui/neat-app/src/views/ConfigView.tsx +184 -0
  42. cognite/neat/_app/ui/neat-app/src/views/GlobalConfigView.tsx +180 -0
  43. cognite/neat/_app/ui/neat-app/src/views/WorkflowView.tsx +570 -0
  44. cognite/neat/_app/ui/neat-app/tsconfig.json +27 -0
  45. cognite/neat/{config.py → _config.py} +3 -3
  46. cognite/neat/{constants.py → _constants.py} +13 -5
  47. cognite/neat/_graph/_shared.py +34 -0
  48. cognite/neat/{graph → _graph}/_tracking/base.py +1 -1
  49. cognite/neat/{graph → _graph}/_tracking/log.py +1 -1
  50. cognite/neat/{graph → _graph}/extractors/__init__.py +5 -0
  51. cognite/neat/{graph → _graph}/extractors/_base.py +2 -2
  52. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_assets.py +1 -1
  53. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_base.py +4 -4
  54. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_classic.py +5 -5
  55. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_data_sets.py +1 -1
  56. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_events.py +1 -1
  57. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_files.py +1 -1
  58. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_labels.py +1 -1
  59. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_relationships.py +2 -2
  60. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_sequences.py +1 -1
  61. cognite/neat/{graph → _graph}/extractors/_classic_cdf/_timeseries.py +1 -1
  62. cognite/neat/{graph → _graph}/extractors/_dexpi.py +5 -5
  63. cognite/neat/{graph → _graph}/extractors/_dms.py +3 -3
  64. cognite/neat/_graph/extractors/_iodd.py +402 -0
  65. cognite/neat/{graph → _graph}/extractors/_mock_graph_generator.py +9 -8
  66. cognite/neat/_graph/extractors/_rdf_file.py +49 -0
  67. cognite/neat/{graph → _graph}/loaders/_base.py +5 -5
  68. cognite/neat/{graph → _graph}/loaders/_rdf2asset.py +11 -10
  69. cognite/neat/{graph → _graph}/loaders/_rdf2dms.py +10 -10
  70. cognite/neat/{graph → _graph}/queries/_base.py +91 -19
  71. cognite/neat/{graph → _graph}/queries/_construct.py +5 -5
  72. cognite/neat/{graph → _graph}/queries/_shared.py +3 -3
  73. cognite/neat/{graph → _graph}/transformers/__init__.py +6 -0
  74. cognite/neat/{graph → _graph}/transformers/_classic_cdf.py +135 -3
  75. cognite/neat/_graph/transformers/_iodd.py +25 -0
  76. cognite/neat/_graph/transformers/_prune_graph.py +126 -0
  77. cognite/neat/{graph → _graph}/transformers/_rdfpath.py +3 -3
  78. cognite/neat/_graph/transformers/_value_type.py +66 -0
  79. cognite/neat/{issues → _issues}/_base.py +32 -17
  80. cognite/neat/{issues → _issues}/errors/__init__.py +1 -1
  81. cognite/neat/{issues → _issues}/errors/_external.py +8 -8
  82. cognite/neat/{issues → _issues}/errors/_general.py +5 -5
  83. cognite/neat/{issues → _issues}/errors/_properties.py +7 -7
  84. cognite/neat/{issues → _issues}/errors/_resources.py +11 -11
  85. cognite/neat/{issues → _issues}/errors/_workflow.py +5 -5
  86. cognite/neat/{issues → _issues}/warnings/__init__.py +1 -1
  87. cognite/neat/{issues → _issues}/warnings/_external.py +5 -5
  88. cognite/neat/{issues → _issues}/warnings/_general.py +4 -4
  89. cognite/neat/{issues → _issues}/warnings/_models.py +10 -10
  90. cognite/neat/{issues → _issues}/warnings/_properties.py +6 -6
  91. cognite/neat/{issues → _issues}/warnings/_resources.py +5 -5
  92. cognite/neat/{issues → _issues}/warnings/user_modeling.py +9 -9
  93. cognite/neat/_rules/_constants.py +190 -0
  94. cognite/neat/{rules → _rules}/_shared.py +5 -5
  95. cognite/neat/_rules/analysis/__init__.py +5 -0
  96. cognite/neat/{rules → _rules}/analysis/_asset.py +5 -5
  97. cognite/neat/{rules → _rules}/analysis/_base.py +5 -5
  98. cognite/neat/_rules/analysis/_dms.py +43 -0
  99. cognite/neat/{rules → _rules}/analysis/_information.py +12 -6
  100. cognite/neat/_rules/catalog/__init__.py +6 -0
  101. cognite/neat/_rules/catalog/info-rules-imf.xlsx +0 -0
  102. cognite/neat/{rules → _rules}/exporters/__init__.py +2 -0
  103. cognite/neat/{rules → _rules}/exporters/_base.py +3 -3
  104. cognite/neat/{rules → _rules}/exporters/_rules2dms.py +5 -5
  105. cognite/neat/{rules → _rules}/exporters/_rules2excel.py +12 -8
  106. cognite/neat/_rules/exporters/_rules2instance_template.py +152 -0
  107. cognite/neat/{rules → _rules}/exporters/_rules2ontology.py +10 -9
  108. cognite/neat/{rules → _rules}/exporters/_rules2yaml.py +1 -3
  109. cognite/neat/{rules → _rules}/exporters/_validation.py +2 -2
  110. cognite/neat/{rules → _rules}/importers/_base.py +3 -3
  111. cognite/neat/{rules → _rules}/importers/_dms2rules.py +9 -9
  112. cognite/neat/{rules → _rules}/importers/_dtdl2rules/dtdl_converter.py +7 -7
  113. cognite/neat/{rules → _rules}/importers/_dtdl2rules/dtdl_importer.py +9 -9
  114. cognite/neat/{rules → _rules}/importers/_dtdl2rules/spec.py +1 -1
  115. cognite/neat/_rules/importers/_rdf/_base.py +144 -0
  116. cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/_imf2classes.py +1 -1
  117. cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/_imf2metadata.py +4 -4
  118. cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/_imf2properties.py +2 -1
  119. cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/_imf2rules.py +8 -39
  120. cognite/neat/{rules → _rules}/importers/_rdf/_inference2rules.py +33 -106
  121. cognite/neat/{rules → _rules}/importers/_rdf/_owl2rules/_owl2classes.py +1 -1
  122. cognite/neat/{rules → _rules}/importers/_rdf/_owl2rules/_owl2metadata.py +5 -5
  123. cognite/neat/{rules → _rules}/importers/_rdf/_owl2rules/_owl2properties.py +1 -1
  124. cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2rules.py +39 -0
  125. cognite/neat/{rules → _rules}/importers/_rdf/_shared.py +4 -4
  126. cognite/neat/{rules → _rules}/importers/_spreadsheet2rules.py +7 -7
  127. cognite/neat/{rules → _rules}/importers/_yaml2rules.py +5 -5
  128. cognite/neat/{rules → _rules}/models/__init__.py +5 -5
  129. cognite/neat/{rules → _rules}/models/_base_input.py +15 -6
  130. cognite/neat/{rules → _rules}/models/_base_rules.py +14 -2
  131. cognite/neat/{rules → _rules}/models/_rdfpath.py +1 -1
  132. cognite/neat/_rules/models/_types.py +151 -0
  133. cognite/neat/{rules → _rules}/models/asset/_rules.py +4 -4
  134. cognite/neat/{rules → _rules}/models/asset/_rules_input.py +4 -4
  135. cognite/neat/{rules → _rules}/models/asset/_validation.py +7 -7
  136. cognite/neat/{rules → _rules}/models/data_types.py +15 -12
  137. cognite/neat/{rules → _rules}/models/dms/_exporter.py +60 -12
  138. cognite/neat/{rules → _rules}/models/dms/_rules.py +26 -23
  139. cognite/neat/{rules → _rules}/models/dms/_rules_input.py +4 -4
  140. cognite/neat/{rules → _rules}/models/dms/_schema.py +15 -14
  141. cognite/neat/{rules → _rules}/models/dms/_validation.py +8 -8
  142. cognite/neat/{rules → _rules}/models/domain.py +6 -6
  143. cognite/neat/{rules → _rules}/models/entities/__init__.py +1 -2
  144. cognite/neat/_rules/models/entities/_constants.py +15 -0
  145. cognite/neat/{rules → _rules}/models/entities/_loaders.py +2 -2
  146. cognite/neat/{rules → _rules}/models/entities/_multi_value.py +15 -2
  147. cognite/neat/{rules → _rules}/models/entities/_single_value.py +7 -4
  148. cognite/neat/{rules → _rules}/models/information/_rules.py +34 -22
  149. cognite/neat/{rules → _rules}/models/information/_rules_input.py +3 -3
  150. cognite/neat/{rules → _rules}/models/information/_validation.py +6 -5
  151. cognite/neat/_rules/models/mapping/__init__.py +4 -0
  152. cognite/neat/_rules/models/mapping/_base.py +131 -0
  153. cognite/neat/_rules/models/mapping/_classic2core.py +150 -0
  154. cognite/neat/{rules → _rules}/transformers/__init__.py +15 -2
  155. cognite/neat/{rules → _rules}/transformers/_base.py +3 -3
  156. cognite/neat/{rules → _rules}/transformers/_converters.py +289 -20
  157. cognite/neat/{rules/transformers/_map_onto.py → _rules/transformers/_mapping.py} +46 -4
  158. cognite/neat/{rules → _rules}/transformers/_pipelines.py +4 -4
  159. cognite/neat/{rules → _rules}/transformers/_verification.py +10 -4
  160. cognite/neat/_session/__init__.py +3 -0
  161. cognite/neat/_session/_base.py +86 -0
  162. cognite/neat/_session/_prepare.py +61 -0
  163. cognite/neat/_session/_read.py +118 -0
  164. cognite/neat/_session/_show.py +96 -0
  165. cognite/neat/_session/_state.py +69 -0
  166. cognite/neat/_session/_to.py +70 -0
  167. cognite/neat/_session/_wizard.py +39 -0
  168. cognite/neat/_session/exceptions.py +42 -0
  169. cognite/neat/{store → _store}/_base.py +63 -32
  170. cognite/neat/{store → _store}/_provenance.py +11 -1
  171. cognite/neat/{utils → _utils}/auth.py +14 -3
  172. cognite/neat/{utils → _utils}/auxiliary.py +1 -1
  173. cognite/neat/{utils → _utils}/cdf/loaders/_data_modeling.py +8 -2
  174. cognite/neat/{utils → _utils}/cdf/loaders/_ingestion.py +1 -1
  175. cognite/neat/{utils → _utils}/upload.py +1 -1
  176. cognite/neat/_version.py +1 -1
  177. cognite/neat/_workflows/__init__.py +17 -0
  178. cognite/neat/{workflows → _workflows}/base.py +10 -10
  179. cognite/neat/{workflows → _workflows}/cdf_store.py +3 -3
  180. cognite/neat/{workflows → _workflows}/examples/Export_DMS/workflow.yaml +89 -89
  181. cognite/neat/{workflows → _workflows}/manager.py +6 -6
  182. cognite/neat/{workflows → _workflows}/steps/data_contracts.py +3 -3
  183. cognite/neat/{workflows → _workflows}/steps/lib/current/graph_extractor.py +8 -31
  184. cognite/neat/{workflows → _workflows}/steps/lib/current/graph_loader.py +4 -4
  185. cognite/neat/{workflows → _workflows}/steps/lib/current/graph_store.py +4 -4
  186. cognite/neat/{workflows → _workflows}/steps/lib/current/rules_exporter.py +8 -8
  187. cognite/neat/{workflows → _workflows}/steps/lib/current/rules_importer.py +13 -13
  188. cognite/neat/{workflows → _workflows}/steps/lib/current/rules_validator.py +8 -8
  189. cognite/neat/{workflows → _workflows}/steps/lib/io/io_steps.py +3 -3
  190. cognite/neat/{workflows → _workflows}/steps/step_model.py +3 -3
  191. cognite/neat/{workflows → _workflows}/steps_registry.py +9 -9
  192. cognite/neat/{workflows → _workflows}/tasks.py +1 -1
  193. cognite/neat/{workflows → _workflows}/triggers.py +2 -2
  194. {cognite_neat-0.92.3.dist-info → cognite_neat-0.93.0.dist-info}/METADATA +6 -2
  195. cognite_neat-0.93.0.dist-info/RECORD +276 -0
  196. {cognite_neat-0.92.3.dist-info → cognite_neat-0.93.0.dist-info}/WHEEL +1 -1
  197. cognite_neat-0.93.0.dist-info/entry_points.txt +3 -0
  198. cognite/neat/app/api/context_manager/__init__.py +0 -3
  199. cognite/neat/graph/_shared.py +0 -5
  200. cognite/neat/graph/extractors/_iodd.py +0 -160
  201. cognite/neat/graph/extractors/_rdf_file.py +0 -26
  202. cognite/neat/rules/analysis/__init__.py +0 -6
  203. cognite/neat/rules/examples/__init__.py +0 -10
  204. cognite/neat/rules/examples/info-rules-imf.xlsx +0 -0
  205. cognite/neat/rules/examples/wind-energy.owl +0 -1511
  206. cognite/neat/rules/importers/_rdf/_owl2rules/_owl2rules.py +0 -65
  207. cognite/neat/rules/models/_types.py +0 -96
  208. cognite/neat/rules/models/entities/_constants.py +0 -73
  209. cognite/neat/utils/regex_patterns.py +0 -58
  210. cognite/neat/workflows/__init__.py +0 -12
  211. cognite_neat-0.92.3.dist-info/RECORD +0 -224
  212. cognite_neat-0.92.3.dist-info/entry_points.txt +0 -3
  213. /cognite/neat/{app → _app}/api/__init__.py +0 -0
  214. /cognite/neat/{app → _app}/api/asgi/metrics.py +0 -0
  215. /cognite/neat/{app → _app}/api/data_classes/__init__.py +0 -0
  216. /cognite/neat/{app → _app}/api/data_classes/rest.py +0 -0
  217. /cognite/neat/{app → _app}/api/routers/metrics.py +0 -0
  218. /cognite/neat/{app → _app}/api/utils/__init__.py +0 -0
  219. /cognite/neat/{app → _app}/api/utils/data_mapping.py +0 -0
  220. /cognite/neat/{app → _app}/api/utils/logging.py +0 -0
  221. /cognite/neat/{app → _app}/api/utils/query_templates.py +0 -0
  222. /cognite/neat/{app → _app}/monitoring/__init__.py +0 -0
  223. /cognite/neat/{app → _app}/monitoring/metrics.py +0 -0
  224. /cognite/neat/{app → _app}/ui/index.html +0 -0
  225. /cognite/neat/{app → _app}/ui/neat-app/.gitignore +0 -0
  226. /cognite/neat/{app → _app}/ui/neat-app/README.md +0 -0
  227. /cognite/neat/{app → _app}/ui/neat-app/build/asset-manifest.json +0 -0
  228. /cognite/neat/{app → _app}/ui/neat-app/build/favicon.ico +0 -0
  229. /cognite/neat/{app → _app}/ui/neat-app/build/img/architect-icon.svg +0 -0
  230. /cognite/neat/{app → _app}/ui/neat-app/build/img/developer-icon.svg +0 -0
  231. /cognite/neat/{app → _app}/ui/neat-app/build/img/sme-icon.svg +0 -0
  232. /cognite/neat/{app → _app}/ui/neat-app/build/index.html +0 -0
  233. /cognite/neat/{app → _app}/ui/neat-app/build/logo192.png +0 -0
  234. /cognite/neat/{app → _app}/ui/neat-app/build/manifest.json +0 -0
  235. /cognite/neat/{app → _app}/ui/neat-app/build/robots.txt +0 -0
  236. /cognite/neat/{app → _app}/ui/neat-app/build/static/css/main.72e3d92e.css +0 -0
  237. /cognite/neat/{app → _app}/ui/neat-app/build/static/css/main.72e3d92e.css.map +0 -0
  238. /cognite/neat/{app → _app}/ui/neat-app/build/static/js/main.5a52cf09.js +0 -0
  239. /cognite/neat/{app → _app}/ui/neat-app/build/static/js/main.5a52cf09.js.LICENSE.txt +0 -0
  240. /cognite/neat/{app → _app}/ui/neat-app/build/static/js/main.5a52cf09.js.map +0 -0
  241. /cognite/neat/{app → _app}/ui/neat-app/build/static/media/logo.8093b84df9ed36a174c629d6fe0b730d.svg +0 -0
  242. /cognite/neat/{graph → _graph}/__init__.py +0 -0
  243. /cognite/neat/{graph → _graph}/_tracking/__init__.py +0 -0
  244. /cognite/neat/{graph → _graph}/examples/Knowledge-Graph-Nordic44-dirty.xml +0 -0
  245. /cognite/neat/{graph → _graph}/examples/Knowledge-Graph-Nordic44.xml +0 -0
  246. /cognite/neat/{graph → _graph}/examples/__init__.py +0 -0
  247. /cognite/neat/{graph → _graph}/examples/skos-capturing-sheet-wind-topics.xlsx +0 -0
  248. /cognite/neat/{graph → _graph}/extractors/_classic_cdf/__init__.py +0 -0
  249. /cognite/neat/{graph → _graph}/loaders/__init__.py +0 -0
  250. /cognite/neat/{graph → _graph}/models.py +0 -0
  251. /cognite/neat/{graph → _graph}/queries/__init__.py +0 -0
  252. /cognite/neat/{graph → _graph}/transformers/_base.py +0 -0
  253. /cognite/neat/{issues → _issues}/__init__.py +0 -0
  254. /cognite/neat/{issues → _issues}/formatters.py +0 -0
  255. /cognite/neat/{rules → _rules}/__init__.py +0 -0
  256. /cognite/neat/{rules → _rules}/importers/__init__.py +0 -0
  257. /cognite/neat/{rules → _rules}/importers/_dtdl2rules/__init__.py +0 -0
  258. /cognite/neat/{rules → _rules}/importers/_dtdl2rules/_unit_lookup.py +0 -0
  259. /cognite/neat/{rules → _rules}/importers/_rdf/__init__.py +0 -0
  260. /cognite/neat/{rules → _rules}/importers/_rdf/_imf2rules/__init__.py +0 -0
  261. /cognite/neat/{rules → _rules}/importers/_rdf/_owl2rules/__init__.py +0 -0
  262. /cognite/neat/{rules → _rules}/models/asset/__init__.py +0 -0
  263. /cognite/neat/{rules → _rules}/models/dms/__init__.py +0 -0
  264. /cognite/neat/{rules → _rules}/models/entities/_types.py +0 -0
  265. /cognite/neat/{rules → _rules}/models/entities/_wrapped.py +0 -0
  266. /cognite/neat/{rules → _rules}/models/information/__init__.py +0 -0
  267. /cognite/neat/{store → _store}/__init__.py +0 -0
  268. /cognite/neat/{utils → _utils}/__init__.py +0 -0
  269. /cognite/neat/{utils → _utils}/cdf/__init__.py +0 -0
  270. /cognite/neat/{utils → _utils}/cdf/data_classes.py +0 -0
  271. /cognite/neat/{utils → _utils}/cdf/loaders/__init__.py +0 -0
  272. /cognite/neat/{utils → _utils}/cdf/loaders/_base.py +0 -0
  273. /cognite/neat/{utils → _utils}/collection_.py +0 -0
  274. /cognite/neat/{utils → _utils}/rdf_.py +0 -0
  275. /cognite/neat/{utils → _utils}/spreadsheet.py +0 -0
  276. /cognite/neat/{utils → _utils}/text.py +0 -0
  277. /cognite/neat/{utils → _utils}/time_.py +0 -0
  278. /cognite/neat/{utils → _utils}/xml_.py +0 -0
  279. /cognite/neat/{workflows → _workflows}/examples/Export_Semantic_Data_Model/workflow.yaml +0 -0
  280. /cognite/neat/{workflows → _workflows}/examples/Import_DMS/workflow.yaml +0 -0
  281. /cognite/neat/{workflows → _workflows}/examples/Validate_Rules/workflow.yaml +0 -0
  282. /cognite/neat/{workflows → _workflows}/examples/Validate_Solution_Model/workflow.yaml +0 -0
  283. /cognite/neat/{workflows → _workflows}/model.py +0 -0
  284. /cognite/neat/{workflows → _workflows}/steps/__init__.py +0 -0
  285. /cognite/neat/{workflows → _workflows}/steps/lib/__init__.py +0 -0
  286. /cognite/neat/{workflows → _workflows}/steps/lib/current/__init__.py +0 -0
  287. /cognite/neat/{workflows → _workflows}/steps/lib/io/__init__.py +0 -0
  288. /cognite/neat/{workflows → _workflows}/utils.py +0 -0
  289. {cognite_neat-0.92.3.dist-info → cognite_neat-0.93.0.dist-info}/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  from cognite.client import CogniteClient
2
2
 
3
- from cognite.neat.workflows.model import FlowMessage
3
+ from cognite.neat._workflows.model import FlowMessage
4
4
 
5
5
 
6
6
  class WorkflowTaskBuilder:
@@ -6,8 +6,8 @@ import time
6
6
  import schedule
7
7
  from fastapi import Request
8
8
 
9
- from cognite.neat.workflows.manager import WorkflowManager
10
- from cognite.neat.workflows.model import FlowMessage, StepType, WorkflowState
9
+ from cognite.neat._workflows.manager import WorkflowManager
10
+ from cognite.neat._workflows.model import FlowMessage, StepType, WorkflowState
11
11
 
12
12
 
13
13
  class TriggerManager:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cognite-neat
3
- Version: 0.92.3
3
+ Version: 0.93.0
4
4
  Summary: Knowledge graph transformation
5
5
  Home-page: https://cognite-neat.readthedocs-hosted.com/
6
6
  License: Apache-2.0
@@ -12,6 +12,7 @@ Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
15
16
  Provides-Extra: all
16
17
  Provides-Extra: docs
17
18
  Provides-Extra: google
@@ -22,13 +23,14 @@ Provides-Extra: service
22
23
  Requires-Dist: PyYAML
23
24
  Requires-Dist: backports.strenum (>=1.2,<2.0) ; python_version < "3.11"
24
25
  Requires-Dist: cognite-sdk (>=7.54.6,<8.0.0)
25
- Requires-Dist: deepdiff
26
26
  Requires-Dist: exceptiongroup (>=1.1.3,<2.0.0) ; python_version < "3.11"
27
27
  Requires-Dist: fastapi (>=0,<1) ; extra == "service" or extra == "all"
28
28
  Requires-Dist: google-api-python-client ; extra == "google"
29
29
  Requires-Dist: google-auth-oauthlib ; extra == "google"
30
30
  Requires-Dist: gspread ; extra == "google"
31
+ Requires-Dist: ipycytoscape (>=1.3.3,<2.0.0)
31
32
  Requires-Dist: jinja2 (>=3.1.2,<4.0.0) ; extra == "graphql" or extra == "all"
33
+ Requires-Dist: matplotlib (>=3.9.2,<4.0.0)
32
34
  Requires-Dist: mkdocs ; extra == "docs"
33
35
  Requires-Dist: mkdocs-autorefs (>=0.5.0,<0.6.0) ; extra == "docs"
34
36
  Requires-Dist: mkdocs-git-authors-plugin ; extra == "docs"
@@ -38,6 +40,7 @@ Requires-Dist: mkdocs-glightbox ; extra == "docs"
38
40
  Requires-Dist: mkdocs-jupyter ; extra == "docs"
39
41
  Requires-Dist: mkdocs-material-extensions ; extra == "docs"
40
42
  Requires-Dist: mkdocstrings[python] ; extra == "docs"
43
+ Requires-Dist: networkx (>=3.4.2,<4.0.0)
41
44
  Requires-Dist: openpyxl
42
45
  Requires-Dist: oxrdflib[oxigraph] (>=0.3.3,<0.4.0) ; extra == "oxi" or extra == "all"
43
46
  Requires-Dist: pandas
@@ -45,6 +48,7 @@ Requires-Dist: prometheus-client (>=0,<1) ; extra == "service" or extra == "all"
45
48
  Requires-Dist: pydantic (>=2,<3)
46
49
  Requires-Dist: pymdown-extensions ; extra == "docs"
47
50
  Requires-Dist: pyoxigraph (==0.3.19) ; extra == "oxi" or extra == "all"
51
+ Requires-Dist: python-multipart (==0.0.9) ; extra == "service" or extra == "all"
48
52
  Requires-Dist: rdflib
49
53
  Requires-Dist: requests
50
54
  Requires-Dist: rich[jupyter] (>=13.7.1,<14.0.0) ; extra == "jupyter"
@@ -0,0 +1,276 @@
1
+ cognite/neat/__init__.py,sha256=VAfPc4TwZ_N_ykp6PLg9HeIwOnn4rj5dAXhiwWtiPVw,176
2
+ cognite/neat/_app/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ cognite/neat/_app/api/asgi/metrics.py,sha256=nxFy7L5cChTI0a-zkCiJ59Aq8yLuIJp5c9Dg0wRXtV0,152
4
+ cognite/neat/_app/api/configuration.py,sha256=Zul4zojPVdME6CHXjz0gLSH_buoU48j4JMHPJA232YE,3646
5
+ cognite/neat/_app/api/context_manager/__init__.py,sha256=yrV2Tj7cmpI9E1JxTNMzZhi4PmZOXlX1dIRrtOVb-30,91
6
+ cognite/neat/_app/api/context_manager/manager.py,sha256=9lL4QFxFsaAtMJBbN3b_roHIB5aP1wFEtow2UnZ67mA,381
7
+ cognite/neat/_app/api/data_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ cognite/neat/_app/api/data_classes/rest.py,sha256=axMBDGcYkR-W-_XhPRNVQdwDJ-EyZJ_zg62GK8WxIZ4,1299
9
+ cognite/neat/_app/api/explorer.py,sha256=FEiGeRW9aY7b86RtNkZPowDreScAsu4dXy4lOulB9fg,1777
10
+ cognite/neat/_app/api/routers/configuration.py,sha256=YuPzDeUx2dGZTpv8BXlo_P04leh_m4phwp4jBnEmrYg,599
11
+ cognite/neat/_app/api/routers/crud.py,sha256=ZWjMFZa82OELYn09WVwYJa6WJ908qaGgklNSwu6HiMM,3948
12
+ cognite/neat/_app/api/routers/metrics.py,sha256=S_bUQk_GjfQq7WbEhSVdow4MUYBZ_bZNafzgcKogXK8,210
13
+ cognite/neat/_app/api/routers/workflows.py,sha256=BpT_VGa7R4fVXPkw5AcFlpNcESyE8BFZN6OWAh1tSfQ,8880
14
+ cognite/neat/_app/api/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ cognite/neat/_app/api/utils/data_mapping.py,sha256=ocqRyeCLbk3gS1NrQQnDr0w-q-xbkqV60uLZzsJIdyE,564
16
+ cognite/neat/_app/api/utils/logging.py,sha256=WNmwcUOS0RRT_szeVwwu5CZ1dainx8iVXuVdtWT0n-M,806
17
+ cognite/neat/_app/api/utils/query_templates.py,sha256=ykeZhelLItwqpMR2INSNp5h3FhLnloDbvT51bBxpjmY,4594
18
+ cognite/neat/_app/main.py,sha256=UReswxzD-bTL5Lu-xE5HkSLzrXSnA6rUcqrRRq7BRmY,358
19
+ cognite/neat/_app/monitoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ cognite/neat/_app/monitoring/metrics.py,sha256=GKNoYEmnQc43FrXNaBC6myQugObxRXrUd6jgqLJlyP0,2690
21
+ cognite/neat/_app/ui/index.html,sha256=PQtvXjCd-PzogV-QjdaCGwSWz0PNn7T_fqnAznR3CCY,16
22
+ cognite/neat/_app/ui/neat-app/.gitignore,sha256=iRXaC85HOaGaxS3OQR8uYGM0ShdU4CpGHR26ThRHUww,312
23
+ cognite/neat/_app/ui/neat-app/README.md,sha256=cOr7x6X9RmqjITtafhsqQTg8vl1Ob8X0WC78WL21CdE,3359
24
+ cognite/neat/_app/ui/neat-app/build/asset-manifest.json,sha256=2bhLuwjqn5PVW0KAf15cEfp3zNFAzZVVcizRZxokVvk,463
25
+ cognite/neat/_app/ui/neat-app/build/favicon.ico,sha256=_Bw_morVrDlSHlMFOCjAzaJV1oM0sOLG6djD8HmP9VI,15406
26
+ cognite/neat/_app/ui/neat-app/build/img/architect-icon.svg,sha256=HDoJmSO2ayVvxDk6R6-d42TwytbGlXMPWm_J2qFjmDA,10756
27
+ cognite/neat/_app/ui/neat-app/build/img/developer-icon.svg,sha256=VeVFw2Pj97D4FPei6YLUJbVqJJKY24RzfF83UWUiujE,8374
28
+ cognite/neat/_app/ui/neat-app/build/img/sme-icon.svg,sha256=z9MJYUNpWnjW4sIf_C0GkbMTfP1EBixIhX4a72s4888,5333
29
+ cognite/neat/_app/ui/neat-app/build/index.html,sha256=zZeliqzRS8zJk5VA4ev_1LJyi-RmTdlNZ1PuDR-X_G0,628
30
+ cognite/neat/_app/ui/neat-app/build/logo192.png,sha256=RvR_LqdUJTCcGEshzFi21taYa6RVtLbg5HVzvoURd3I,344557
31
+ cognite/neat/_app/ui/neat-app/build/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
32
+ cognite/neat/_app/ui/neat-app/build/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
33
+ cognite/neat/_app/ui/neat-app/build/static/css/main.72e3d92e.css,sha256=SS8E_b4N1ayPHBsmNLAVf_VpFVpo4u2Xgmvq39awN1M,5743
34
+ cognite/neat/_app/ui/neat-app/build/static/css/main.72e3d92e.css.map,sha256=UCwPS3x4W1FET7XOTEKibp-aIpTklhq1NdWBfxKmw74,9689
35
+ cognite/neat/_app/ui/neat-app/build/static/js/main.5a52cf09.js,sha256=smnlEqWQMDt0wRRv2DCOilBzsZgWSd3OKQkyoXMt-m8,758028
36
+ cognite/neat/_app/ui/neat-app/build/static/js/main.5a52cf09.js.LICENSE.txt,sha256=M2qsmls4n4vaE1yB1m25JNt71IMv-VrlgyImZiTZVNE,2330
37
+ cognite/neat/_app/ui/neat-app/build/static/js/main.5a52cf09.js.map,sha256=Lf93Q5-M2-Yc8NTq59fJ7floyiT9f-ayFYFKDvnVZqU,3161888
38
+ cognite/neat/_app/ui/neat-app/build/static/media/logo.8093b84df9ed36a174c629d6fe0b730d.svg,sha256=EYf9q9JoVJ1L1np-XloeEZXCmaibzKmmpXCKn_44xzA,240334
39
+ cognite/neat/_app/ui/neat-app/package-lock.json,sha256=9Lp1Zuiuv3ahyJ7gZCt6Uv0Bk1ljiQ1EsePHeDvqvCk,716575
40
+ cognite/neat/_app/ui/neat-app/package.json,sha256=O3RrOKxtJk9E0J6NVJGMWCCwx0IAv2bVADrkXW9Vcqs,1680
41
+ cognite/neat/_app/ui/neat-app/public/favicon.ico,sha256=_Bw_morVrDlSHlMFOCjAzaJV1oM0sOLG6djD8HmP9VI,15406
42
+ cognite/neat/_app/ui/neat-app/public/img/architect-icon.svg,sha256=HDoJmSO2ayVvxDk6R6-d42TwytbGlXMPWm_J2qFjmDA,10756
43
+ cognite/neat/_app/ui/neat-app/public/img/developer-icon.svg,sha256=VeVFw2Pj97D4FPei6YLUJbVqJJKY24RzfF83UWUiujE,8374
44
+ cognite/neat/_app/ui/neat-app/public/img/sme-icon.svg,sha256=z9MJYUNpWnjW4sIf_C0GkbMTfP1EBixIhX4a72s4888,5333
45
+ cognite/neat/_app/ui/neat-app/public/index.html,sha256=PC5k2ooW6sqLp88hafUbhUUA84c4PPep6fpZovDPaao,1700
46
+ cognite/neat/_app/ui/neat-app/public/logo192.png,sha256=RvR_LqdUJTCcGEshzFi21taYa6RVtLbg5HVzvoURd3I,344557
47
+ cognite/neat/_app/ui/neat-app/public/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
48
+ cognite/neat/_app/ui/neat-app/public/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
49
+ cognite/neat/_app/ui/neat-app/src/App.css,sha256=pDHTEDeJfx_H6zxx9x0WfFKsR9R9bZRysWkYo_WInbI,570
50
+ cognite/neat/_app/ui/neat-app/src/App.js,sha256=bUgj-Ul-eGGiaQp_0F3ZXArR8_Qi06aHTxjjiWjkjAM,350
51
+ cognite/neat/_app/ui/neat-app/src/App.test.js,sha256=93hGkxlLhlfRv3DDfqcPSi1pTEVm7EFVCo5lDrYAqqQ,246
52
+ cognite/neat/_app/ui/neat-app/src/MainContainer.tsx,sha256=gNVCKmxum1XZE6KMF9AS_FsNOXnomV460gD8KFt7PWI,1767
53
+ cognite/neat/_app/ui/neat-app/src/components/JsonViewer.tsx,sha256=CBYu0al0BNcvTAFD6pdlBP9xozfp1PnGeXNA9ZRQpSo,1570
54
+ cognite/neat/_app/ui/neat-app/src/components/LocalUploader.tsx,sha256=LBS6sj5Xo5WmxlsP7_sMDYFVDwOcU4-gvgYgiFvG0G0,5192
55
+ cognite/neat/_app/ui/neat-app/src/components/OverviewComponentEditorDialog.tsx,sha256=X0Rwf4mB9E4hdruJVcLYv_0CqaXXVaj2QZ7W0bnJ70Y,2668
56
+ cognite/neat/_app/ui/neat-app/src/components/StepEditorDialog.tsx,sha256=g8WzchD2jdy2vRk1bQW7W4Kih24jPGnRRSGpDIaqyQ4,26371
57
+ cognite/neat/_app/ui/neat-app/src/components/TabPanel.tsx,sha256=SXYqNrTxJqmaS-JCnYJvLHvpqhrQt9J19JuidqKiKAI,839
58
+ cognite/neat/_app/ui/neat-app/src/components/Utils.tsx,sha256=UMQXn14K1bMp8RPXxAGNH_JsJ02R0-egFJGYEOBxjfI,1396
59
+ cognite/neat/_app/ui/neat-app/src/components/WorkflowDeleteDialog.tsx,sha256=5OhxIeA29wfuN07D0_3fGDNjdP2LSaZ1-_DKACRAIZ4,2168
60
+ cognite/neat/_app/ui/neat-app/src/components/WorkflowExecutionReport.tsx,sha256=1DH68GzUxFVqEvSD0iyLGUb6wzpSrVOr01URuXzVO-s,4724
61
+ cognite/neat/_app/ui/neat-app/src/components/WorkflowImportExportDialog.tsx,sha256=jrUUC_CklTmItfZ5X_G8y9lEpTh7ijCiaqa-52E5uC8,2654
62
+ cognite/neat/_app/ui/neat-app/src/components/WorkflowMetadataDialog.tsx,sha256=V66X2h9_qm3YoiJUcEwvDExtOW7GOGoM0c-JuXcQ5U8,2948
63
+ cognite/neat/_app/ui/neat-app/src/index.css,sha256=2vIsKWyAHT1TMIM2HMWfvcIuW_5SiqS60Zc7VMxUSKQ,366
64
+ cognite/neat/_app/ui/neat-app/src/index.js,sha256=dF8MTJQ0Z2jIpBuCEzgCTARKIv-G5R2xiRoIl-EI1RU,324
65
+ cognite/neat/_app/ui/neat-app/src/logo.svg,sha256=EYf9q9JoVJ1L1np-XloeEZXCmaibzKmmpXCKn_44xzA,240334
66
+ cognite/neat/_app/ui/neat-app/src/reportWebVitals.js,sha256=cUhRZphWFSgGwon5qsYkC0FLusUMYO5PfmJH8x6sDBw,362
67
+ cognite/neat/_app/ui/neat-app/src/setupTests.js,sha256=Ilg3WdAEX9-NYsnbCqy6n9i93eecZxqgjJfc_U6TDMY,241
68
+ cognite/neat/_app/ui/neat-app/src/types/WorkflowTypes.ts,sha256=4oqfy4K628opd3Aiky-5Op9rTDKy-y7TKGEdVCnlv-k,11122
69
+ cognite/neat/_app/ui/neat-app/src/views/AboutView.tsx,sha256=_ltM71LtDAscBhzaCytcAfNE0Gt34a7jgVgzn4Asi34,2053
70
+ cognite/neat/_app/ui/neat-app/src/views/ConfigView.tsx,sha256=mbYo37wFPsPYUmniP_o6WnC8bUy2vOdGTgPIMmdVwTU,7749
71
+ cognite/neat/_app/ui/neat-app/src/views/GlobalConfigView.tsx,sha256=1NMOby21ArrfYLMbbhH8M0OMRMQDaal91cGMaM9i8bM,8504
72
+ cognite/neat/_app/ui/neat-app/src/views/WorkflowView.tsx,sha256=dU6xZip3MVaVzKAF23Cu6qZTl2Dn_evO-RTDAVGfONg,18451
73
+ cognite/neat/_app/ui/neat-app/tsconfig.json,sha256=sw7AweQXRyJAIQ8Beft_380Q8zBr54pG1P_wutdPAIQ,664
74
+ cognite/neat/_config.py,sha256=f9Py4SEHwYYquIg-k1rC7MbXBLENXQauoZtLyUbWvJQ,10118
75
+ cognite/neat/_constants.py,sha256=fs8G6uMMzcP10kghwH4kvUERB5680BXUMQWIub0RMUI,1324
76
+ cognite/neat/_graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ cognite/neat/_graph/_shared.py,sha256=WTDR46N3V8GZRZaqXcqR_IJnlMCQU7aT9xUmr_jBwFE,927
78
+ cognite/neat/_graph/_tracking/__init__.py,sha256=pYj7c-YAUIP4hvN-4mlWnwaeZFerzL9_gM-oZhex7cE,91
79
+ cognite/neat/_graph/_tracking/base.py,sha256=qU7DQL_aeG22jS-uE3G17B1WL1sOOxHt-eR0XlTZngs,821
80
+ cognite/neat/_graph/_tracking/log.py,sha256=_MGgMWxPDfKG4kbX-YL1UO0Lfq8nbcjyFFJeqN5wpuc,928
81
+ cognite/neat/_graph/examples/Knowledge-Graph-Nordic44-dirty.xml,sha256=ujJip6XBs5n8enVDPzNnuGkMBwv8g21tIr1sEVJpK5M,1439359
82
+ cognite/neat/_graph/examples/Knowledge-Graph-Nordic44.xml,sha256=U2Ns-M4LRjT1fBkhmRj63ur7jDzlRtHK9yOLf_npZ_g,1437996
83
+ cognite/neat/_graph/examples/__init__.py,sha256=yAjHVY3b5jOjmbW-iLbhvu7BG014TpGi3K4igkDqW5I,368
84
+ cognite/neat/_graph/examples/skos-capturing-sheet-wind-topics.xlsx,sha256=CV_yK5ZSbYS_ktfIZUPD8Sevs47zpswLXQUDFkGE4Gw,45798
85
+ cognite/neat/_graph/extractors/__init__.py,sha256=wNP2QZ6_HVosbE_3aI6PyZtH1VpKOEGuXKjmzdo9hDQ,2006
86
+ cognite/neat/_graph/extractors/_base.py,sha256=khz8TjpJhh65gQKvbXWWRgPulTiLXu4e0lKBwFaR1Nk,500
87
+ cognite/neat/_graph/extractors/_classic_cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
+ cognite/neat/_graph/extractors/_classic_cdf/_assets.py,sha256=HE-axrJsfGfl1an_vwUR2oenfhGug_ONI57y0J-qwqw,6605
89
+ cognite/neat/_graph/extractors/_classic_cdf/_base.py,sha256=0CC1HPc3SR4mijlHBhUAYCo7dys1VV6Z7yu4VqzEprM,5075
90
+ cognite/neat/_graph/extractors/_classic_cdf/_classic.py,sha256=GoZtdyjVSDm6xcHhNCP_K_9zxJjeTCjd57BwwnB18Q0,10191
91
+ cognite/neat/_graph/extractors/_classic_cdf/_data_sets.py,sha256=8nGWyEydogWIu-BhwXqIIlUmCxraRlQr60CjDVUx_Ms,4298
92
+ cognite/neat/_graph/extractors/_classic_cdf/_events.py,sha256=cMWrT5hmZemToHzMmtxBEK6jOYe8V4NdmbJ45K2FajU,6509
93
+ cognite/neat/_graph/extractors/_classic_cdf/_files.py,sha256=GyA_s5Sk4U1wm9KYt4Aed4LL03VBgf0xF8sbUORykos,7555
94
+ cognite/neat/_graph/extractors/_classic_cdf/_labels.py,sha256=2LEUSjmvvXTMyWvPmGPT8aNBbsJbCOY2pyGLlCBRXHs,4767
95
+ cognite/neat/_graph/extractors/_classic_cdf/_relationships.py,sha256=UW3vEw_bVztJIz51sYSjlTk8ldg1e3JSmH_Xr8JV9Wc,8794
96
+ cognite/neat/_graph/extractors/_classic_cdf/_sequences.py,sha256=6vywy1iZQfScXH6BTEPTCDx_Ew04bkbkZvCJ3mAJbe4,6007
97
+ cognite/neat/_graph/extractors/_classic_cdf/_timeseries.py,sha256=pnNpFXypFQjPiydlvmro4s2x3JGakGOTyJPKNIHEb30,7503
98
+ cognite/neat/_graph/extractors/_dexpi.py,sha256=s_Eudbii-s4UFobs1VwuZd-W1iXFUJF8RSGwkyH9cWs,9437
99
+ cognite/neat/_graph/extractors/_dms.py,sha256=_-eUgqqIZv0jxDZUAlz6cS21JkyADDgLnyc8iZ5fBA0,6691
100
+ cognite/neat/_graph/extractors/_iodd.py,sha256=LNVkYOT1sqCz-fOqha3nsqLwjFWxgswVxV9vjNht4eA,18464
101
+ cognite/neat/_graph/extractors/_mock_graph_generator.py,sha256=7ijAJniloWGMuldc-UsKZWxcXBV_OF-3o6v2RImzTW4,15415
102
+ cognite/neat/_graph/extractors/_rdf_file.py,sha256=NknGs_sV183ZgY4BhxceikPPogwuoq0YA7QVoKSp6aY,1694
103
+ cognite/neat/_graph/loaders/__init__.py,sha256=TbeJqifd16JLOglPVNOeb6pN_w060UYag50KquBM_r0,769
104
+ cognite/neat/_graph/loaders/_base.py,sha256=6ZuJutmZSveGIpkBxd5k3tDvCBDY42JyZ98vEe_T84Q,3619
105
+ cognite/neat/_graph/loaders/_rdf2asset.py,sha256=QJE4HfDedOmvaXKUxm0RkuZeEqWUsgNuDrOQx--fvz8,17556
106
+ cognite/neat/_graph/loaders/_rdf2dms.py,sha256=kEB0mO27JSYycdJVzbSiCuIhp-YWek4hzIznWULT0_M,14987
107
+ cognite/neat/_graph/models.py,sha256=Z9aj825ZS_BCU6rwekyxKq7LL0QMh6i0DXGp7QQf_D4,182
108
+ cognite/neat/_graph/queries/__init__.py,sha256=BgDd-037kvtWwAoGAy8eORVNMiZ5-E9sIV0txIpeaN4,50
109
+ cognite/neat/_graph/queries/_base.py,sha256=2vXS9OcACLF__tyVM5WoaAo9-446tA4A6Xw1aL0h3js,12720
110
+ cognite/neat/_graph/queries/_construct.py,sha256=CW8uHtXXACUXDj1AcEjROXtvoiuyx0CTgZ0bURY5Neo,7213
111
+ cognite/neat/_graph/queries/_shared.py,sha256=K3svLkvw-DWPZUwIwpJRjPKg5UIRKFCn5jBLpuJjiHc,5330
112
+ cognite/neat/_graph/transformers/__init__.py,sha256=Za37uqOykDECwGZr3b6U6zfV236_-dPtY_ESHU_vVc8,889
113
+ cognite/neat/_graph/transformers/_base.py,sha256=b37Ek-9njuM5pTR_3XhnxCMrg_ip_2BMwM7ZhKpAAlw,328
114
+ cognite/neat/_graph/transformers/_classic_cdf.py,sha256=-4GCCwXNLz8NrOeSMavuzPXDRAGbuq-lZtH_xOicuMk,19216
115
+ cognite/neat/_graph/transformers/_iodd.py,sha256=yH-BvVQUswM8RmV2VvOPQAgwudhBJdxDLHW1RKxuuAY,729
116
+ cognite/neat/_graph/transformers/_prune_graph.py,sha256=fWZ4sMBf3XqoYC5nOU75Gl6XwscRe-wGYT-GiBFmcK8,5277
117
+ cognite/neat/_graph/transformers/_rdfpath.py,sha256=a-KoFecFXcEAJoa8MgyNtBBARC6bW9Q5eUfp5YOdGfU,1864
118
+ cognite/neat/_graph/transformers/_value_type.py,sha256=JorH-AgDXVZUkG_GCcwn51Mw0M2WIOV834t0kF_Nwvo,2614
119
+ cognite/neat/_issues/__init__.py,sha256=KkBEO-0Lg3vdvjrQtxKR6Wy2iV2mooc9utSO8-_9UuI,405
120
+ cognite/neat/_issues/_base.py,sha256=hUICh_IGrHyPnP--XQaf5W_GvJFwzfcmHfMj8c-Egr8,16138
121
+ cognite/neat/_issues/errors/__init__.py,sha256=0_rzFJa_fpF_OFyv1BTWm2Gejf-r3f-vuko5_hJ58-M,2078
122
+ cognite/neat/_issues/errors/_external.py,sha256=AuV2PyJcGjYxEnuwmi3zfYWPCF-yr4w39Uy0lQpeoqo,1619
123
+ cognite/neat/_issues/errors/_general.py,sha256=Afsp2OpP8lb5J9JrEDLlBWtU36Mx9AxtKaDxTFqRVKs,808
124
+ cognite/neat/_issues/errors/_properties.py,sha256=a-Sz58-Qd7t2ImM6UQypK7a7pINhetPWspKazvlrVYQ,2330
125
+ cognite/neat/_issues/errors/_resources.py,sha256=H3Pog-b_t-EJJnVTeACfQMvgTuE5rcZ8Yt89YHruqUA,3910
126
+ cognite/neat/_issues/errors/_workflow.py,sha256=m_Hlsvl5A1Oy7P3IROnz-4_do8_orZ1Pr1IHqsMyEys,971
127
+ cognite/neat/_issues/formatters.py,sha256=QCk41VLlpq-R9uaHpINYceZkIUoI9m4pwSq_yWPOmr8,3331
128
+ cognite/neat/_issues/warnings/__init__.py,sha256=iIxJrFHnTNmo2mqBErUb8pIzusikSs-AvvwYTKqkP_Y,2331
129
+ cognite/neat/_issues/warnings/_external.py,sha256=8N8eJcixU0IBl7lzKHv2rhg51J_oXwJfI_H46LjqYHo,974
130
+ cognite/neat/_issues/warnings/_general.py,sha256=9ZSNYBwFQ_XEagxYioUijJdCkdmT3VDQTlTO_JINe_E,617
131
+ cognite/neat/_issues/warnings/_models.py,sha256=iR8z5rKyNTnS9nskm9DWZvfx_474OHLjKVueDXUEsqw,3068
132
+ cognite/neat/_issues/warnings/_properties.py,sha256=eHK0uv52T5TC_xQvSiMiuYIVVTJiKjttkcGwA5G0Uak,1966
133
+ cognite/neat/_issues/warnings/_resources.py,sha256=s_HPZXrSyZroCnPjZ-gw4LDJF3FtFQsDhD-SNTk2fT4,1809
134
+ cognite/neat/_issues/warnings/user_modeling.py,sha256=_DlhvR287jSvpVqKxImNpaztX-w3v9Ol-fBpqj_6nfo,3643
135
+ cognite/neat/_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
+ cognite/neat/_rules/_constants.py,sha256=JrbtHRnF79mQN8Fkr6CowIKBMtrf8dRiI6Hjby34i3U,5606
137
+ cognite/neat/_rules/_shared.py,sha256=Y0hrSSBY9S09uYEtBQRDj0Mi_FgSrKGJfv0S9yCCyy4,1767
138
+ cognite/neat/_rules/analysis/__init__.py,sha256=MDkXtex0CTrRahqlGjkiGvnMsaXKoM5xoldvFhW6CPA,177
139
+ cognite/neat/_rules/analysis/_asset.py,sha256=2GjpAAxhAOov8ukvfvVJkqgeRl8D4Q3PUsOFN58lsPI,7364
140
+ cognite/neat/_rules/analysis/_base.py,sha256=btJYi55TAV8lsFtT57vL5wuV3vN21LfbuzcLZEmFVOw,16769
141
+ cognite/neat/_rules/analysis/_dms.py,sha256=0UhxxDrIS9HFUjsOBi91DTa0-vSf-kIrnMNhtYgWkL8,1785
142
+ cognite/neat/_rules/analysis/_information.py,sha256=iZTcBYsAkqC9cxwrj0KSz0bwbjKWUTrGszcSERkcA3Q,10229
143
+ cognite/neat/_rules/catalog/__init__.py,sha256=dzx-DYYJDc861aFiOI5o1FsySD9F1agY8SBsr3nCf4Y,148
144
+ cognite/neat/_rules/catalog/info-rules-imf.xlsx,sha256=M7oSkuzKOqJsNSTOjy4JTKfo00renxo_5taBAiD0A8k,55004
145
+ cognite/neat/_rules/exporters/__init__.py,sha256=jCwXAeyZJv7GNJ3hGG-80gb8LAidozsyFMzdNIsGt_Y,1204
146
+ cognite/neat/_rules/exporters/_base.py,sha256=ipI74rpyOoshrdJ5M1g2B8hyP76kCkxrWRqKS1klefY,1332
147
+ cognite/neat/_rules/exporters/_rules2dms.py,sha256=-KxYU7aCbyb-Xy2uuXoTSuYN7aQesFGR6p0mbBICdqc,14453
148
+ cognite/neat/_rules/exporters/_rules2excel.py,sha256=vfBFRzxBAVIPcg0dZaMoYOYu7hR02CcjqkZ4HPjfM1c,14991
149
+ cognite/neat/_rules/exporters/_rules2instance_template.py,sha256=8HM1SkzcucaEYpQi96ncMnL8STArX9Oe09JBhJJAN4I,5810
150
+ cognite/neat/_rules/exporters/_rules2ontology.py,sha256=ttEZ4Sd16MPumHbs3eoPWAQyitUKdcaBDkfVXT6vWug,21756
151
+ cognite/neat/_rules/exporters/_rules2yaml.py,sha256=O9vnzDHf1ep1Qu0po0GVjgu945HNx3-zRmhxv65sv6I,3052
152
+ cognite/neat/_rules/exporters/_validation.py,sha256=DVJGdNNU2WtAFgUg0h4SWVhveRErEPOcYdT65y5toV0,682
153
+ cognite/neat/_rules/importers/__init__.py,sha256=z682_ktGKDjr52DIL6cPvOercZS6-TYD_ZDo-MGqtck,1207
154
+ cognite/neat/_rules/importers/_base.py,sha256=S-9Mi_58IvrIZ3oZaPRFnRWVIVhewcqGp8tng3q6kbw,2982
155
+ cognite/neat/_rules/importers/_dms2rules.py,sha256=Hpjn8fPmH8f_Jnxx9RnS6nlqe-2JH1haiLy0ygg3nXU,22904
156
+ cognite/neat/_rules/importers/_dtdl2rules/__init__.py,sha256=CNR-sUihs2mnR1bPMKs3j3L4ds3vFTsrl6YycExZTfU,68
157
+ cognite/neat/_rules/importers/_dtdl2rules/_unit_lookup.py,sha256=wW4saKva61Q_i17guY0dc4OseJDQfqHy_QZBtm0OD6g,12134
158
+ cognite/neat/_rules/importers/_dtdl2rules/dtdl_converter.py,sha256=BwClXc1ONzWacXbdoG5741Vj7knhJL1rRgyHh0X194Y,11911
159
+ cognite/neat/_rules/importers/_dtdl2rules/dtdl_importer.py,sha256=rlVS-U1iJyfcX9LxqxqPT-wBeV8-vxBQR3AvLaihU-k,6153
160
+ cognite/neat/_rules/importers/_dtdl2rules/spec.py,sha256=u__f08rAiYG0FIRiWoecBN83bVN3GEy--Lvm7463Q68,12166
161
+ cognite/neat/_rules/importers/_rdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
+ cognite/neat/_rules/importers/_rdf/_base.py,sha256=bIEc0rwjZup7htJ_4Zmm7dytFjYRqUB6k8ttvSr62w8,4988
163
+ cognite/neat/_rules/importers/_rdf/_imf2rules/__init__.py,sha256=4ZuX81E-Tp4Vf6g_6Pb0iStzOCy7RJ83yxhvo4UddXY,63
164
+ cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2classes.py,sha256=8nMZTHicfh1WFqcIl1U_3N2Aq02rVgbGYJHxxmmXgB0,3746
165
+ cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2metadata.py,sha256=SANfCXoZtu440j4bZcT4_Btn-tEelD-wszHp_0QXUlI,979
166
+ cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2properties.py,sha256=6Rvo3e-PeWFZgNratzElGdnFRBTFiUcdlg_udRSc92Q,6172
167
+ cognite/neat/_rules/importers/_rdf/_imf2rules/_imf2rules.py,sha256=KqQ6YbpKg-kWg60klgP8gWJx5S5jgOW6cATP2cnZoxQ,5221
168
+ cognite/neat/_rules/importers/_rdf/_inference2rules.py,sha256=UqL9Sx4s_T2k9km9-6VFVkW_2tSPsn3_R3nmWPAyVPQ,10189
169
+ cognite/neat/_rules/importers/_rdf/_owl2rules/__init__.py,sha256=tdGcrgtozdQyST-pTlxIa4cLBNTLvtk1nNYR4vOdFSw,63
170
+ cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2classes.py,sha256=2Izln8dzkjFXuCSxz8PPwIFyNh1z3WxhnPE7_QsYrs8,1935
171
+ cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2metadata.py,sha256=Fm3HWrtCUWK09lF9HFR73HRZfFow260516DP5PnrWkY,2664
172
+ cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2properties.py,sha256=OA_PseTa-TOq4g8hPBE6xaWIw9U_Q8-GfAdLFVOoSp4,2146
173
+ cognite/neat/_rules/importers/_rdf/_owl2rules/_owl2rules.py,sha256=ePB9iFRpk17vC946X1nBIdP7x3hV7abUQB70yQOmvko,1575
174
+ cognite/neat/_rules/importers/_rdf/_shared.py,sha256=FiAF1X0CnUcEiTT81gK3w7CbtDF0yW8WBo6V3ZUCRRc,19771
175
+ cognite/neat/_rules/importers/_spreadsheet2rules.py,sha256=rqtb_Y1-5UPlQc1Msci8F1mEcrs1lsa6iO4B-E1VXZ0,12472
176
+ cognite/neat/_rules/importers/_yaml2rules.py,sha256=5DsEMYo6JVHC_mBOaaR3J6on1rXSpk82plCsrOq5_l8,3144
177
+ cognite/neat/_rules/models/__init__.py,sha256=wB6Vo3hs9WRtQjHuXR_2HN4jot8ZJE0OiE2zAzw9Mik,1529
178
+ cognite/neat/_rules/models/_base_input.py,sha256=qJrxobZLqpc28adEUJTKdJ8hDUZ67SVDFkUJnGjcPOc,6647
179
+ cognite/neat/_rules/models/_base_rules.py,sha256=Yf4BE5XRSxFRbElrJcKzFwrGT_pOkT_mc_EKpr2-F1Q,13489
180
+ cognite/neat/_rules/models/_rdfpath.py,sha256=hqUMZCMeI8ESdJltu7FifuUhna5JNN_Heup2aYkV56Y,11882
181
+ cognite/neat/_rules/models/_types.py,sha256=jNzz7oO9uKIMqkjJ6kLEvRb83NERW0ZXURLvbPjgViA,4719
182
+ cognite/neat/_rules/models/asset/__init__.py,sha256=Z2tQEABW-q66bmHNcxMuIxPmYQBcGdiSZt7fHGe01dQ,363
183
+ cognite/neat/_rules/models/asset/_rules.py,sha256=ecMuxdEkfH3l6ROpe0n96lhOjQoLYugM3jeldyqScFc,4007
184
+ cognite/neat/_rules/models/asset/_rules_input.py,sha256=-8s79O1DnwNQNPjJhcdzBlJvjyaorXXqHQZSLRWOsvc,3379
185
+ cognite/neat/_rules/models/asset/_validation.py,sha256=6u86qLlr1ehG1I5kIZhfCYTqUenuxUu9n_d7yWMUrS0,2021
186
+ cognite/neat/_rules/models/data_types.py,sha256=ACQjS9vs7EjaNSO8R1kHiiNYbdeVQLCvxJYfZhWF8mM,9620
187
+ cognite/neat/_rules/models/dms/__init__.py,sha256=CUqUlVjz4yZX_-61F-2ofSoV7N9MlSYx2N7vM-omp7E,640
188
+ cognite/neat/_rules/models/dms/_exporter.py,sha256=dZAl5439p2K6LsA4yNpwCsEgNsxVkGjcmV9JGL3JAYE,30345
189
+ cognite/neat/_rules/models/dms/_rules.py,sha256=8VlGchvUHtBrcaP6DhpkQn6qBgd2zlmeQoakh09axuk,19369
190
+ cognite/neat/_rules/models/dms/_rules_input.py,sha256=LgehVseHiKLKfc7Osg3q8n1H64DUIe2iRDayh6Be4io,10919
191
+ cognite/neat/_rules/models/dms/_schema.py,sha256=HSmSDvOm5S0x4Vb9tH9Jvd5i9tXiiM08E_Sdu6q_iA8,50783
192
+ cognite/neat/_rules/models/dms/_validation.py,sha256=2KL1_GNnJ5cjsdk9uJTBV691_o8ZehqmgXSiaN5q8aw,15798
193
+ cognite/neat/_rules/models/domain.py,sha256=HOZ6e6pIWJWWYTTDPDWpuwEHoiUacOdkvjAI81vMdMk,3999
194
+ cognite/neat/_rules/models/entities/__init__.py,sha256=QD-h79HhjqCsgscNU5kuf1ieRCE94dOfpujLuzYbtHk,1469
195
+ cognite/neat/_rules/models/entities/_constants.py,sha256=ToiLaaF-hGLPfn3AsKIIrfB4ZdTk4cY1RjM9gA1Qjkg,288
196
+ cognite/neat/_rules/models/entities/_loaders.py,sha256=mb_iKnwGn1FOa4bcqIuvh4oy5tuUpOWF6pFOOB_9ndE,2693
197
+ cognite/neat/_rules/models/entities/_multi_value.py,sha256=5RgZBrJfw7VSE-6F50-Lqtio_xVo4vbezKmoyiDdcw8,2692
198
+ cognite/neat/_rules/models/entities/_single_value.py,sha256=JLX8t-Uft0qeY_honmv0GbIip59gtBvsaPQ9oNfZJis,17416
199
+ cognite/neat/_rules/models/entities/_types.py,sha256=df9rnXJJKciv2Bp-Ve2q4xdEJt6WWniq12Z0hW2d6sk,1917
200
+ cognite/neat/_rules/models/entities/_wrapped.py,sha256=FxC8HztW_tUUtuArAOwxyFfkdJnSEB4bgZoNmmmfiPk,7137
201
+ cognite/neat/_rules/models/information/__init__.py,sha256=fVvgXt-JuyZCP_mLgIVaeKD9pdAXe2BWUxU_BZs8e5g,480
202
+ cognite/neat/_rules/models/information/_rules.py,sha256=myMmtJLJs1nF81Su96wmDTM9-DP7dF-Ezs41RlmqMzk,14869
203
+ cognite/neat/_rules/models/information/_rules_input.py,sha256=LqWJM7D4kjPPC3Ok7WbsqwYpbSIk8hQun22JK8gVUFw,5277
204
+ cognite/neat/_rules/models/information/_validation.py,sha256=0ntsrXJV28yOFfhhXcKsP9TUr0LwKG_vaYPMHzHbTEI,9252
205
+ cognite/neat/_rules/models/mapping/__init__.py,sha256=jSn-dCckmVQF0ClSBOBvVacprzNxdhPpdyIlYVajjMY,198
206
+ cognite/neat/_rules/models/mapping/_base.py,sha256=xDjtbNvDXAh0F93WSvgdwoI_5K9XYu_w9hhG02ZZKtg,5922
207
+ cognite/neat/_rules/models/mapping/_classic2core.py,sha256=JWJRLcEh7YSJrnYxSqaYboj1YrrsVnP7XTBj9AgVJ3A,6826
208
+ cognite/neat/_rules/transformers/__init__.py,sha256=UM7D9_ebFTTGqXmTqew-0fCec0aZO98VbYAUmEzm--o,858
209
+ cognite/neat/_rules/transformers/_base.py,sha256=Q0cwHzFBxRp6srX7HFAvGzzIoQb07gWsE-rISHEbDGY,3272
210
+ cognite/neat/_rules/transformers/_converters.py,sha256=2lhmVIeOHOgOwwHHbjyGOhO_vv6xvR9DFDf1bzirwIA,34611
211
+ cognite/neat/_rules/transformers/_mapping.py,sha256=RWHKPMaP3JdeCNvoDGu9ZGHxfyeIgapYEBRoargnd2Q,6797
212
+ cognite/neat/_rules/transformers/_pipelines.py,sha256=-E5Hgitnr6ee8R9_3sqtjmWIPJ0w1xaLErG6Fo6ExVU,2603
213
+ cognite/neat/_rules/transformers/_verification.py,sha256=330I1i3Va7Nau3DK3bTgEEGSHppmLvT-1yBMocDxV1A,4694
214
+ cognite/neat/_session/__init__.py,sha256=fxQ5URVlUnmEGYyB8Baw7IDq-uYacqkigbc4b-Pr9Fw,58
215
+ cognite/neat/_session/_base.py,sha256=9QgOUeizAwG9P7xy5J8zOsRd5cMMkncYgv6PTeWgd_k,3564
216
+ cognite/neat/_session/_prepare.py,sha256=u7dJ4nZqB9j6JWoBx6em9ABKc_PA_yaRQWfiI1n3iks,2484
217
+ cognite/neat/_session/_read.py,sha256=JQyxG1-QyX8fbiUnwVexKzlgWMg9VUeTJvC0uFgAg_U,4401
218
+ cognite/neat/_session/_show.py,sha256=0xzXx8fzM1CWxflWwQK0QYE3KU0ZDJUYL8W5Pg-21b0,3286
219
+ cognite/neat/_session/_state.py,sha256=ef7OiCxavk4_asIivENaWrvC3HcXZNV6wGldus55JD0,2488
220
+ cognite/neat/_session/_to.py,sha256=u--yGD2y9JKV-sf34PYsMf-nc9Qs2yibpPsv6IG0CLA,2125
221
+ cognite/neat/_session/_wizard.py,sha256=Rdld2eZ-Q5BYbmAwW8FlfAYebdlw_P6L6V2WSDk-dHI,1306
222
+ cognite/neat/_session/exceptions.py,sha256=qT0Mq3h-0NaDatvyr2D476LkSjmvyZtNmmLXtd1SLVg,1106
223
+ cognite/neat/_shared.py,sha256=RSaHm2eJceTlvb-hMMe4nHgoHdPYDfN3XcxDXo24k3A,1530
224
+ cognite/neat/_store/__init__.py,sha256=G-VG_YwfRt1kuPao07PDJyZ3w_0-eguzLUM13n-Z_RA,64
225
+ cognite/neat/_store/_base.py,sha256=W-xcxfmlAUG-7JKcL2JwUuPG5xA4KugHT2x_FdZXJQY,14215
226
+ cognite/neat/_store/_provenance.py,sha256=mD14UnETX6YkR8RO60Oxz7vBPm2Dm8m2xwthhLIxqSc,4122
227
+ cognite/neat/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
+ cognite/neat/_utils/auth.py,sha256=hyDnVBUbbgVANzayxbh9uTWlYb924hmzPYkVwwLfDIg,13241
229
+ cognite/neat/_utils/auxiliary.py,sha256=kKPOPtwHj-RYerVCTQ_Rukn0Zkc6FNBhgQ1zOTAeRs8,5717
230
+ cognite/neat/_utils/cdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
+ cognite/neat/_utils/cdf/data_classes.py,sha256=XdPsHfmE3G-4o1AT_rNRiT916kWRoUpOMfgCyYjI0xU,10461
232
+ cognite/neat/_utils/cdf/loaders/__init__.py,sha256=s2aPR5XLo6WZ0ybstAJlcGFYkA7CyHW1XO-NYpL0V6o,483
233
+ cognite/neat/_utils/cdf/loaders/_base.py,sha256=ryNC_AMXIESWXuTVJ-02L-HSVSpD6V49XdLTRYeFg70,1764
234
+ cognite/neat/_utils/cdf/loaders/_data_modeling.py,sha256=8JglDxxcK1Y0wpE3pLlRIve2r0vnRxdRDh16tEZBzzU,13565
235
+ cognite/neat/_utils/cdf/loaders/_ingestion.py,sha256=a9Td1pYVJRYgU7pQ1Adi_S2o2M5t7pFbUurRk1Hj7KM,6327
236
+ cognite/neat/_utils/collection_.py,sha256=m5pn78NRQ9vx8l-NdMTAdYDLCTB8CQLX-rqxAWt7vyg,602
237
+ cognite/neat/_utils/rdf_.py,sha256=VXDBQUt86vRntiGhejK35PlsbvKCUkuQQa1cMYz4SIc,5656
238
+ cognite/neat/_utils/spreadsheet.py,sha256=LI0c7dlW0zXHkHw0NvB-gg6Df6cDcE3FbiaHBYLXdzQ,2714
239
+ cognite/neat/_utils/text.py,sha256=PvTEsEjaTu8SE8yYaKUrce4msboMj933dK7-0Eey_rE,3652
240
+ cognite/neat/_utils/time_.py,sha256=O30LUiDH9TdOYz8_a9pFqTtJdg8vEjC3qHCk8xZblG8,345
241
+ cognite/neat/_utils/upload.py,sha256=X5GGWHswnW0BrL2ulmm5MnKKtn-t1C8Ps3gb9Byc914,4016
242
+ cognite/neat/_utils/xml_.py,sha256=FQkq84u35MUsnKcL6nTMJ9ajtG9D5i1u4VBnhGqP2DQ,1710
243
+ cognite/neat/_version.py,sha256=W-KEJT0wpRrG8XJ2aDG4NSyzaUucgZR9y6mwfCTlku4,23
244
+ cognite/neat/_workflows/__init__.py,sha256=S0fZq7kvoqDKodHu1UIPsqcpdvXoefUWRPt1lqeQkQs,420
245
+ cognite/neat/_workflows/base.py,sha256=O1pcmfbme2gIVF2eOGrKZSUDmhZc8L9rI8UfvLN2YAM,26839
246
+ cognite/neat/_workflows/cdf_store.py,sha256=3pebnATPo6In4-1srpa3wzstynTOi3T6hwFX5uaie4c,18050
247
+ cognite/neat/_workflows/examples/Export_DMS/workflow.yaml,sha256=dViI5aotf6cvcsePXjDBB_osyw1IUbNu2-rsGS1-5NM,1898
248
+ cognite/neat/_workflows/examples/Export_Semantic_Data_Model/workflow.yaml,sha256=67glGNis215kQbxX-e4g5QO_6of0-Vaq4J9k81YUWCk,1461
249
+ cognite/neat/_workflows/examples/Import_DMS/workflow.yaml,sha256=i7FeD0dzUBhzorjMgo7v1mjShhgsEpobbxIAL-czt34,1364
250
+ cognite/neat/_workflows/examples/Validate_Rules/workflow.yaml,sha256=lmuC-zttewtZl5EjnUv8RuM9t2dC-F053duNQHKoPGg,1395
251
+ cognite/neat/_workflows/examples/Validate_Solution_Model/workflow.yaml,sha256=Oy3u9QJ7QZoKZqmY0mRMWtnJZd9agmbRZCrbvf32xis,1326
252
+ cognite/neat/_workflows/manager.py,sha256=mXrDZwTxyDP4WQRvIKlo9gnaEXL5fl0_pvHYlWVbKRI,14108
253
+ cognite/neat/_workflows/model.py,sha256=LQY7abYnz3CUEIlIEqoj0Eo6Q8yQukTQ0S_sPststCA,6570
254
+ cognite/neat/_workflows/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
+ cognite/neat/_workflows/steps/data_contracts.py,sha256=i_3YF-G-3LxcQGszn0XPYUYLp8PXTx2kNUSEbTgViFg,2470
256
+ cognite/neat/_workflows/steps/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
+ cognite/neat/_workflows/steps/lib/current/__init__.py,sha256=c22IznGdCSNCpXCi_yonlbbywJE1uj6bfVCv0X2LYeE,225
258
+ cognite/neat/_workflows/steps/lib/current/graph_extractor.py,sha256=iQsEs3a8pYISFqlP7lTMnPxz8Zic5Ep7CwB38jkRaJY,3711
259
+ cognite/neat/_workflows/steps/lib/current/graph_loader.py,sha256=EItu0wh-b-AFyn7iRhdThLjJ2NvHYBv3hY3x2w5sCqg,1693
260
+ cognite/neat/_workflows/steps/lib/current/graph_store.py,sha256=Fbd3Fb4K2QML_if46SLldikvBJUPJ2VUAG2Bzqcq-Qc,1586
261
+ cognite/neat/_workflows/steps/lib/current/rules_exporter.py,sha256=tMUa4Q3XKglNSdB1OJOKnA69d60d-tklnMaysRYxw30,27760
262
+ cognite/neat/_workflows/steps/lib/current/rules_importer.py,sha256=uoBne8M7lpLj3hb6hsjRL1sGDSQDWyxxuawVhe3lQCQ,17995
263
+ cognite/neat/_workflows/steps/lib/current/rules_validator.py,sha256=i1NZWGfDKUpbrN8ftVI0yvCqNy2ED3E6zL3TlqH4DVA,5054
264
+ cognite/neat/_workflows/steps/lib/io/__init__.py,sha256=k7IPbIq3ey19oRc5sA_15F99-O6dxzqbm1LihGRRo5A,32
265
+ cognite/neat/_workflows/steps/lib/io/io_steps.py,sha256=EZWqM_0hkfzCVnUxzHPNLIdvkqT6NUKDaZsrD_Z2jpU,16934
266
+ cognite/neat/_workflows/steps/step_model.py,sha256=XyKk3j8Q4Y4E9E9rai-LbEelQPlrhyzsDWzzzruoxOM,2946
267
+ cognite/neat/_workflows/steps_registry.py,sha256=dtQ5RBxABJeQkOvUvZxaSGEj0kf4jS0Tun41r3F_fJQ,10731
268
+ cognite/neat/_workflows/tasks.py,sha256=dr2xuIb8P5e5e9p_fjzRlvDbKsre2xGYrkc3wnRx7IY,789
269
+ cognite/neat/_workflows/triggers.py,sha256=u69xOsaTtM8_WD6ZeIIBB-XKwvlZmPHAsZQh_TnyHcM,7073
270
+ cognite/neat/_workflows/utils.py,sha256=gKdy3RLG7ctRhbCRwaDIWpL9Mi98zm56-d4jfHDqP1E,453
271
+ cognite/neat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
+ cognite_neat-0.93.0.dist-info/LICENSE,sha256=W8VmvFia4WHa3Gqxq1Ygrq85McUNqIGDVgtdvzT-XqA,11351
273
+ cognite_neat-0.93.0.dist-info/METADATA,sha256=7LtcqYVhejVdcOylDNH0joitMI2PEGd-Dn6JJkKVDuQ,9668
274
+ cognite_neat-0.93.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
275
+ cognite_neat-0.93.0.dist-info/entry_points.txt,sha256=SsQlnl8SNMSSjE3acBI835JYFtsIinLSbVmHmMEXv6E,51
276
+ cognite_neat-0.93.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 1.9.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ neat=cognite.neat._app.main:run
3
+
@@ -1,3 +0,0 @@
1
- from cognite.neat.app.api.context_manager.manager import lifespan
2
-
3
- __all__ = ["lifespan"]
@@ -1,5 +0,0 @@
1
- from typing import Literal, TypeAlias
2
-
3
- MIMETypes: TypeAlias = Literal[
4
- "application/rdf+xml", "text/turtle", "application/n-triple", "application/n-quads", "application/trig"
5
- ]
@@ -1,160 +0,0 @@
1
- import xml.etree.ElementTree as ET
2
- from pathlib import Path
3
- from typing import ClassVar
4
- from xml.etree.ElementTree import Element
5
-
6
- from rdflib import RDF, Literal, Namespace, URIRef
7
-
8
- from cognite.neat.constants import DEFAULT_NAMESPACE
9
- from cognite.neat.graph.extractors._base import BaseExtractor
10
- from cognite.neat.graph.models import Triple
11
- from cognite.neat.utils.rdf_ import as_neat_compliant_uri
12
- from cognite.neat.utils.text import to_camel
13
- from cognite.neat.utils.xml_ import get_children
14
-
15
- IODD = Namespace("http://www.io-link.com/IODD/2010/10/")
16
- XSI = Namespace("http://www.w3.org/2001/XMLSchema-instance/")
17
-
18
-
19
- class IODDExtractor(BaseExtractor):
20
- """
21
- IODD-XML extractor of RDF triples
22
-
23
- Each IODD sheet describes an IODD device. This extractor extracts rdf triples that describes the device, and the
24
- sensors connected to the device.
25
- This data is described under the elements "DeviceIdentity" and "ProcessDataCollection".
26
- In addition, triples extacted from "DeviceIdentity" and
27
- "ProcessDataCollection" may reference "Text" elements which are found under "ExternalTextCollection". Edges to
28
- these Text element nodes are also extracted.
29
-
30
- Args:
31
- root: XML root element of IODD XML file.
32
- namespace: Optional custom namespace to use for extracted triples that define data
33
- model instances. Defaults to DEFAULT_NAMESPACE.
34
- """
35
-
36
- device_elements_with_text_nodes: ClassVar[list[str]] = ["VendorText", "VendorUrl", "DeviceName", "DeviceFamily"]
37
-
38
- def __init__(self, root: Element, namespace: Namespace | None = None):
39
- self.root = root
40
- self.namespace = namespace or DEFAULT_NAMESPACE
41
-
42
- @classmethod
43
- def from_file(cls, filepath: str | Path, namespace: Namespace | None = None):
44
- return cls(ET.parse(filepath).getroot(), namespace)
45
-
46
- @classmethod
47
- def _from_root2triples(cls, root: Element, namespace: Namespace) -> list[Triple]:
48
- """Loops through the relevant elements of the IODD XML sheet to create rdf triples that describes the IODD
49
- device by starting at the root element.
50
- """
51
- triples: list[Triple] = []
52
-
53
- # Extract DeviceIdentity triples
54
- if di_root := get_children(
55
- root, "DeviceIdentity", ignore_namespace=True, include_nested_children=True, no_children=1
56
- ):
57
- triples.extend(cls._iodd_device_identity2triples(di_root[0], namespace))
58
-
59
- # Extract ProcessDataCollection triples -
60
- # this element holds the information about the sensors with data coming from MQTT
61
- if pc_root := get_children(
62
- root, "ProcessDataCollection", ignore_namespace=True, include_nested_children=True, no_children=1
63
- ):
64
- triples.extend(cls._process_data_collection2triples(pc_root[0], namespace))
65
-
66
- if et_root := get_children(
67
- root, "ExternalTextCollection", ignore_namespace=True, include_nested_children=True, no_children=1
68
- ):
69
- triples.extend(cls._text_elements2triples(et_root[0], namespace))
70
-
71
- return triples
72
-
73
- @classmethod
74
- def _device_2text_elements_edges(cls, di_root: Element, id: URIRef, namespace: Namespace) -> list[Triple]:
75
- """
76
- Create edges from the device node to text nodes.
77
- """
78
- triples: list[Triple] = []
79
-
80
- for element_tag in cls.device_elements_with_text_nodes:
81
- if child := get_children(
82
- di_root, child_tag=element_tag, ignore_namespace=True, include_nested_children=True, no_children=1
83
- ):
84
- if text_id := child[0].attrib.get("textId"):
85
- # Create connection from device to textId node
86
- element_tag = to_camel(element_tag)
87
- triples.append((id, IODD[element_tag], namespace[text_id]))
88
-
89
- return triples
90
-
91
- @classmethod
92
- def _text_elements2triples(cls, et_root: Element, namespace: Namespace) -> list[Triple]:
93
- """
94
- This method extracts all text item triples under the ExternalTextCollection element. This will create a node
95
- for each text item, and add the text value as a property to the node.
96
- """
97
- triples: list[Triple] = []
98
-
99
- if text_elements := get_children(
100
- et_root, child_tag="Text", ignore_namespace=True, include_nested_children=True
101
- ):
102
- for element in text_elements:
103
- if id := element.attrib.get("id"):
104
- text_id = namespace[id]
105
-
106
- # Create Text node
107
- triples.append((text_id, RDF.type, as_neat_compliant_uri(IODD["Text"])))
108
-
109
- # Resolve text value related to the text item
110
- if value := element.attrib.get("value"):
111
- triples.append((text_id, IODD.value, Literal(value)))
112
-
113
- return triples
114
-
115
- # TODO
116
- @classmethod
117
- def _process_data_collection2triples(cls, pc_root: Element, namespace: Namespace) -> list[Triple]:
118
- """
119
- ProcessDataCollection contains both ProcessDataIn and ProcessDataOut. Here, we are interested in the elements
120
- that corresponds to actual sensor values that we will rececive from the MQTT connection.
121
-
122
- Most likely this is ProcessDataOut elements (to be verified).
123
- """
124
- triples: list[Triple] = []
125
-
126
- return triples
127
-
128
- @classmethod
129
- def _iodd_device_identity2triples(cls, di_root: Element, namespace: Namespace) -> list[Triple]:
130
- """
131
- Properties and metadata related to the IO Device are described under the 'DeviceIdentity' element in the XML.
132
- This method extracts the triples that describe the device's identity which is found under the
133
- DeviceIdentity element and its child elements.
134
-
135
- """
136
- triples: list[Triple] = []
137
-
138
- if device_id := di_root.attrib.get("deviceId"):
139
- id_ = namespace[device_id]
140
-
141
- for attribute_name, attribute_value in di_root.attrib.items():
142
- if attribute_name == "deviceId":
143
- # Create rdf type triple for IODD
144
- triples.append(
145
- (
146
- id_,
147
- RDF.type,
148
- as_neat_compliant_uri(IODD["IoddDevice"]),
149
- )
150
- )
151
- else:
152
- # Collect attributes at root element
153
- triples.append((id_, IODD[attribute_name], Literal(attribute_value)))
154
-
155
- triples.extend(cls._device_2text_elements_edges(di_root, id_, namespace))
156
- return triples
157
-
158
- def extract(self) -> list[Triple]:
159
- # Extract triples from IODD device XML
160
- return self._from_root2triples(self.root, self.namespace)
@@ -1,26 +0,0 @@
1
- from pathlib import Path
2
-
3
- from rdflib import URIRef
4
-
5
- from cognite.neat.graph._shared import MIMETypes
6
- from cognite.neat.graph.extractors._base import BaseExtractor
7
-
8
-
9
- class RdfFileExtractor(BaseExtractor):
10
- """Extract data from RDF files into Neat.
11
-
12
- Args:
13
- filepath (Path): The path to the RDF file.
14
- mime_type (MIMETypes, optional): The MIME type of the RDF file. Defaults to "application/rdf+xml".
15
- base_uri (URIRef, optional): The base URI to use. Defaults to None.
16
- """
17
-
18
- def __init__(
19
- self,
20
- filepath: Path,
21
- mime_type: MIMETypes = "application/rdf+xml",
22
- base_uri: URIRef | None = None,
23
- ):
24
- self.filepath = filepath
25
- self.mime_type = mime_type
26
- self.base_uri = base_uri
@@ -1,6 +0,0 @@
1
- from ._asset import AssetAnalysis
2
- from ._information import (
3
- InformationAnalysis,
4
- )
5
-
6
- __all__ = ["InformationAnalysis", "AssetAnalysis"]
@@ -1,10 +0,0 @@
1
- from pathlib import Path
2
-
3
- # we should make this a proper package that loads examples
4
- # similar how they handle it in xarray:
5
- # https://github.com/pydata/xarray/blob/main/xarray/tutorial.py
6
- # Currently there are simple paths to the examples which are then easily loaded in the notebooks
7
-
8
- _EXAMPLES = Path(__file__).parent
9
- wind_energy_ontology = _EXAMPLES / "wind-energy.owl"
10
- imf_info_rules = _EXAMPLES / "info-rules-imf.xlsx"