cloe-nessy 0.3.5__py3-none-any.whl → 0.3.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.
Files changed (88) hide show
  1. cloe_nessy/__init__.py +0 -0
  2. cloe_nessy/clients/__init__.py +0 -0
  3. cloe_nessy/clients/api_client/__init__.py +0 -0
  4. cloe_nessy/clients/api_client/api_client.py +0 -0
  5. cloe_nessy/clients/api_client/api_response.py +0 -0
  6. cloe_nessy/clients/api_client/auth.py +0 -0
  7. cloe_nessy/clients/api_client/exceptions.py +0 -0
  8. cloe_nessy/file_utilities/__init__.py +0 -0
  9. cloe_nessy/file_utilities/exceptions.py +0 -0
  10. cloe_nessy/file_utilities/factory.py +0 -0
  11. cloe_nessy/file_utilities/get_file_paths.py +0 -0
  12. cloe_nessy/file_utilities/location_types.py +0 -0
  13. cloe_nessy/file_utilities/strategies/__init__.py +0 -0
  14. cloe_nessy/file_utilities/strategies/base_strategy.py +0 -0
  15. cloe_nessy/file_utilities/strategies/local_strategy.py +0 -0
  16. cloe_nessy/file_utilities/strategies/onelake_strategy.py +0 -0
  17. cloe_nessy/file_utilities/strategies/utils_strategy.py +0 -0
  18. cloe_nessy/integration/__init__.py +0 -0
  19. cloe_nessy/integration/reader/__init__.py +0 -0
  20. cloe_nessy/integration/reader/api_reader.py +0 -0
  21. cloe_nessy/integration/reader/catalog_reader.py +0 -0
  22. cloe_nessy/integration/reader/excel_reader.py +0 -0
  23. cloe_nessy/integration/reader/exceptions.py +0 -0
  24. cloe_nessy/integration/reader/file_reader.py +0 -0
  25. cloe_nessy/integration/reader/reader.py +0 -0
  26. cloe_nessy/integration/writer/__init__.py +0 -0
  27. cloe_nessy/integration/writer/catalog_writer.py +0 -0
  28. cloe_nessy/logging/__init__.py +0 -0
  29. cloe_nessy/logging/logger_mixin.py +0 -0
  30. cloe_nessy/models/__init__.py +4 -0
  31. cloe_nessy/models/adapter/__init__.py +3 -0
  32. cloe_nessy/models/adapter/unity_catalog_adapter.py +292 -0
  33. cloe_nessy/models/catalog.py +10 -0
  34. cloe_nessy/models/column.py +0 -0
  35. cloe_nessy/models/constraint.py +0 -0
  36. cloe_nessy/models/foreign_key.py +0 -0
  37. cloe_nessy/models/mixins/__init__.py +0 -0
  38. cloe_nessy/models/mixins/read_instance_mixin.py +0 -0
  39. cloe_nessy/models/mixins/template_loader_mixin.py +0 -0
  40. cloe_nessy/models/schema.py +19 -0
  41. cloe_nessy/models/table.py +50 -5
  42. cloe_nessy/models/types.py +0 -0
  43. cloe_nessy/models/volume.py +67 -0
  44. cloe_nessy/object_manager/__init__.py +7 -2
  45. cloe_nessy/object_manager/table_manager.py +183 -7
  46. cloe_nessy/object_manager/volume_manager.py +70 -0
  47. cloe_nessy/pipeline/__init__.py +0 -0
  48. cloe_nessy/pipeline/actions/__init__.py +2 -0
  49. cloe_nessy/pipeline/actions/read_api.py +0 -0
  50. cloe_nessy/pipeline/actions/read_catalog_table.py +0 -0
  51. cloe_nessy/pipeline/actions/read_excel.py +0 -0
  52. cloe_nessy/pipeline/actions/read_files.py +0 -0
  53. cloe_nessy/pipeline/actions/read_metadata_yaml.py +0 -0
  54. cloe_nessy/pipeline/actions/transform_change_datatype.py +0 -0
  55. cloe_nessy/pipeline/actions/transform_clean_column_names.py +0 -0
  56. cloe_nessy/pipeline/actions/transform_concat_columns.py +0 -0
  57. cloe_nessy/pipeline/actions/transform_decode.py +0 -0
  58. cloe_nessy/pipeline/actions/transform_deduplication.py +0 -0
  59. cloe_nessy/pipeline/actions/transform_distinct.py +0 -0
  60. cloe_nessy/pipeline/actions/transform_filter.py +0 -0
  61. cloe_nessy/pipeline/actions/transform_generic_sql.py +0 -0
  62. cloe_nessy/pipeline/actions/transform_group_aggregate.py +0 -0
  63. cloe_nessy/pipeline/actions/transform_hash_columns.py +209 -0
  64. cloe_nessy/pipeline/actions/transform_join.py +0 -0
  65. cloe_nessy/pipeline/actions/transform_json_normalize.py +0 -0
  66. cloe_nessy/pipeline/actions/transform_rename_columns.py +0 -0
  67. cloe_nessy/pipeline/actions/transform_replace_values.py +0 -0
  68. cloe_nessy/pipeline/actions/transform_select_columns.py +0 -0
  69. cloe_nessy/pipeline/actions/transform_union.py +0 -0
  70. cloe_nessy/pipeline/actions/write_catalog_table.py +0 -0
  71. cloe_nessy/pipeline/pipeline.py +44 -2
  72. cloe_nessy/pipeline/pipeline_action.py +0 -0
  73. cloe_nessy/pipeline/pipeline_config.py +0 -0
  74. cloe_nessy/pipeline/pipeline_context.py +0 -0
  75. cloe_nessy/pipeline/pipeline_parsing_service.py +0 -0
  76. cloe_nessy/pipeline/pipeline_step.py +0 -0
  77. cloe_nessy/py.typed +0 -0
  78. cloe_nessy/session/__init__.py +0 -0
  79. cloe_nessy/session/session_manager.py +27 -0
  80. cloe_nessy/settings/__init__.py +0 -0
  81. cloe_nessy/settings/settings.py +0 -0
  82. cloe_nessy/utils/__init__.py +0 -0
  83. cloe_nessy/utils/file_and_directory_handler.py +0 -0
  84. cloe_nessy-0.3.8.dist-info/METADATA +46 -0
  85. {cloe_nessy-0.3.5.dist-info → cloe_nessy-0.3.8.dist-info}/RECORD +18 -12
  86. {cloe_nessy-0.3.5.dist-info → cloe_nessy-0.3.8.dist-info}/WHEEL +1 -1
  87. {cloe_nessy-0.3.5.dist-info → cloe_nessy-0.3.8.dist-info}/top_level.txt +0 -0
  88. cloe_nessy-0.3.5.dist-info/METADATA +0 -26
@@ -1,3 +1,5 @@
1
+ import json
2
+ import os
1
3
  from enum import Enum
2
4
  from typing import Any
3
5
 
@@ -16,12 +18,14 @@ class SessionManager:
16
18
  - FABRIC_UI: Represents the Fabric user interface.
17
19
  - DATABRICKS_CONNECT: Represents the Databricks Connect environment.
18
20
  - OTHER_REMOTE_SPARK: Represents other remote Spark environments, such as used in tests.
21
+ - STANDALONE_SPARK: Represents a standalone Spark cluster environment.
19
22
  """
20
23
 
21
24
  DATABRICKS_UI = "databricks_ui"
22
25
  FABRIC_UI = "fabric_ui"
23
26
  DATABRICKS_CONNECT = "databricks_connect"
24
27
  OTHER_REMOTE_SPARK = "other_remote_spark"
28
+ STANDALONE_SPARK = "standalone_spark"
25
29
 
26
30
  _spark: SparkSession | None = None
27
31
  _utils = None
@@ -52,6 +56,15 @@ class SessionManager:
52
56
 
53
57
  builder = cls.get_spark_builder()
54
58
 
59
+ # Check if NESSY_SPARK_CONFIG environment variable is set and load it as config
60
+ nessy_spark_config = os.getenv("NESSY_SPARK_CONFIG")
61
+ if nessy_spark_config:
62
+ try:
63
+ # Parse the JSON configuration from the environment variable
64
+ config = json.loads(nessy_spark_config)
65
+ except json.JSONDecodeError as e:
66
+ raise ValueError(f"Invalid JSON in NESSY_SPARK_CONFIG: {e}") from e
67
+
55
68
  if config:
56
69
  for key, value in config.items():
57
70
  builder.config(key, value) # type: ignore
@@ -84,6 +97,7 @@ class SessionManager:
84
97
  cls.Environment.DATABRICKS_UI: cls._get_dbutils,
85
98
  cls.Environment.DATABRICKS_CONNECT: cls._get_dbutils,
86
99
  cls.Environment.OTHER_REMOTE_SPARK: cls._get_dbutils,
100
+ cls.Environment.STANDALONE_SPARK: cls._get_localsparkutils,
87
101
  cls.Environment.FABRIC_UI: cls._get_mssparkutils,
88
102
  }
89
103
 
@@ -112,6 +126,10 @@ class SessionManager:
112
126
 
113
127
  cls._utils = mssparkutils
114
128
 
129
+ @classmethod
130
+ def _get_localsparkutils(cls):
131
+ return None
132
+
115
133
  @classmethod
116
134
  def _detect_env(cls) -> Environment | None:
117
135
  """Detects the current execution environment for Spark.
@@ -169,6 +187,14 @@ class SessionManager:
169
187
  except ImportError:
170
188
  pass
171
189
 
190
+ try:
191
+ from pyspark.sql import SparkSession # noqa: F401
192
+
193
+ cls._env = cls.Environment.STANDALONE_SPARK
194
+ return cls._env
195
+ except ImportError:
196
+ pass
197
+
172
198
  raise RuntimeError("Cannot detect environment.")
173
199
 
174
200
  @classmethod
@@ -180,6 +206,7 @@ class SessionManager:
180
206
  cls.Environment.FABRIC_UI: SparkSession.builder,
181
207
  cls.Environment.DATABRICKS_CONNECT: cls._get_databricks_connect_builder,
182
208
  cls.Environment.OTHER_REMOTE_SPARK: cls._get_databricks_connect_builder,
209
+ cls.Environment.STANDALONE_SPARK: SparkSession.builder,
183
210
  }
184
211
  builder = builders.get(cls._env)
185
212
  if builder is None:
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: cloe-nessy
3
+ Version: 0.3.8
4
+ Summary: Your friendly datalake monster.
5
+ Author-email: initions <ICSMC_EXT_PYPIORG@accenture.com>
6
+ License: MIT
7
+ Classifier: Development Status :: 5 - Production/Stable
8
+ Classifier: Environment :: Console
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Topic :: Database
14
+ Requires-Python: <3.12,>=3.11
15
+ Description-Content-Type: text/markdown
16
+ Requires-Dist: pydantic<3.0.0,>=2.7.2
17
+ Requires-Dist: pyyaml<7.0.0,>=6.0.1
18
+ Requires-Dist: types-pyyaml<7.0.0.0,>=6.0.12.20240311
19
+ Requires-Dist: jinja2<4.0.0,>=3.1.4
20
+ Requires-Dist: pydantic-settings<3.0.0,>=2.4.0
21
+ Requires-Dist: openpyxl<4.0.0,>=3.1.5
22
+ Requires-Dist: requests<3.0.0,>=2.32.3
23
+ Requires-Dist: types-requests<3.0.0.0,>=2.32.0.20240712
24
+ Requires-Dist: pandas-stubs<3.0.0.0,>=2.2.2.240807
25
+ Requires-Dist: azure-identity<2.0.0,>=1.19.0
26
+ Requires-Dist: httpx<1.0.0,>=0.27.2
27
+ Requires-Dist: databricks-sdk<1.0.0,>=0.36.0
28
+ Requires-Dist: networkx<4.0,>=3.3
29
+ Requires-Dist: matplotlib<4.0.0,>=3.9.2
30
+ Requires-Dist: types-networkx<4.0.0.0,>=3.2.1.20240820
31
+ Requires-Dist: fsspec<2025.0.0,>=2024.9.0
32
+ Requires-Dist: cloe-logging[databricks,log-analytics]<0.4,>=0.3.7
33
+
34
+ # cloe-nessy
35
+
36
+ [![Copier](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-inverted-border-orange.json)](https://github.com/copier-org/copier)
37
+ [![python](https://img.shields.io/badge/Python-3.12-3776AB.svg?style=flat&logo=python&logoColor=white)](https://www.python.org)
38
+ [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
39
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v0.json)](https://github.com/charliermarsh/ruff)
40
+ [![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](https://mypy-lang.org/)
41
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
42
+ [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
43
+
44
+ Owner: initions
45
+
46
+ Your friendly datalake monster.
@@ -28,26 +28,31 @@ cloe_nessy/integration/writer/__init__.py,sha256=NIh0t1RYlG3J1Y5_CvnR36N9tISmcEl
28
28
  cloe_nessy/integration/writer/catalog_writer.py,sha256=Gb-hMdADgO_uUJ7mZPHBYyNme2qXsdFFnzwo7GcShHM,2192
29
29
  cloe_nessy/logging/__init__.py,sha256=ySVCVbdyR3Dno_tl2ZfiER_7EVaDoQMHVkNyfdMZumY,65
30
30
  cloe_nessy/logging/logger_mixin.py,sha256=9iy7BF6drYme-f7Rrt_imbVBRgVqQ89xjcP1X5aMtfY,7467
31
- cloe_nessy/models/__init__.py,sha256=_JPN_R5-QDfjYzvrvZDdeOezl0C-JTG-Rk4S1VE5vJM,242
31
+ cloe_nessy/models/__init__.py,sha256=-FmWEJ1Oq1njSopjc0R7GmT64mLSmALkm8PkHNzy9Y8,327
32
+ cloe_nessy/models/catalog.py,sha256=ayC1sMp4cNLAZtu0ICVV3Us6-o4hn8U9tpzzvxC9RAs,177
32
33
  cloe_nessy/models/column.py,sha256=53fBwRnino72XKACsHZpN9QfCBqqSXyKLHZlM0huumg,1988
33
34
  cloe_nessy/models/constraint.py,sha256=hsFlhn4n928z81O3dl3v5bMetewPWzMjkJK3_4kASSM,178
34
35
  cloe_nessy/models/foreign_key.py,sha256=DwRVHs9sShqqPV-NL7ow_3AmPPWX0Od26yZn_I565pU,1001
35
- cloe_nessy/models/schema.py,sha256=8bc1fakLUWZzkVZ_Zn5iWMUvfDNxnuoToNE4kmqtBJo,2764
36
- cloe_nessy/models/table.py,sha256=lshPBA3D6vA1samtC7WmlfZZWrMUrOLna89rs8lhGCI,10472
36
+ cloe_nessy/models/schema.py,sha256=DHlJJ4JA8392vVrFatH22GoPOCJN-eqkmHVihIHpPCg,3382
37
+ cloe_nessy/models/table.py,sha256=W9gqMTCQBRo3Z_rLY5cJ8WgPEUEslNLbaRrODuTy15Y,11744
37
38
  cloe_nessy/models/types.py,sha256=XRbuJGdTNa6aXyE3IAzs_J9gVjbfkzMDLfGl-k6jI_4,223
39
+ cloe_nessy/models/volume.py,sha256=7_lH4X-Au8jYNRVFQ5F2x-fRy2J8Z5-cLTn3Z3mpLQs,2197
40
+ cloe_nessy/models/adapter/__init__.py,sha256=m36W_mqwB3dCYnCIt0fLOSHS4E1VU8FRGoaum4Gf95o,90
41
+ cloe_nessy/models/adapter/unity_catalog_adapter.py,sha256=T5v8gN57vRj9OLrfj8N4TEsH_Z_5N38wTqu_7rYgXb0,12572
38
42
  cloe_nessy/models/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
43
  cloe_nessy/models/mixins/read_instance_mixin.py,sha256=j5Y4aNWOh1jlskEaxNooZFJgPyxRmik00gAVLJnAaRs,4507
40
44
  cloe_nessy/models/mixins/template_loader_mixin.py,sha256=5MXhEGBFlq3dwZvINEyBowSlipNnVun2H_TmhI_fsS4,549
41
- cloe_nessy/object_manager/__init__.py,sha256=tt_sBt8eC-jCP8FShqRPKJvGNVIPeb-htA7NoUivTjY,68
42
- cloe_nessy/object_manager/table_manager.py,sha256=K6OGCNNDt1ceLA0MkwtyW6AR5tYIW3tfqF3ZcvHlcUw,2717
45
+ cloe_nessy/object_manager/__init__.py,sha256=3sle0vNpPwBOkycxA3XVS9m4XZf5LD3Qd4NGxdqcHno,186
46
+ cloe_nessy/object_manager/table_manager.py,sha256=B_00UXaEQQHTAsyZGivhW3TQQpejC3obljAi_IwyFNA,9993
47
+ cloe_nessy/object_manager/volume_manager.py,sha256=6epd3KXzcNH04EvaKubAfLsaUm9qBMeT3KNvMK04gGs,2727
43
48
  cloe_nessy/pipeline/__init__.py,sha256=sespmJ5JsgyiFyZiedTiL2kg--zGIX7cjTYsD5vemEg,325
44
- cloe_nessy/pipeline/pipeline.py,sha256=oQ1PwYkOSGHOfgbmImy7IbB5Ma-NKHN_CMXq1FepTc4,9206
49
+ cloe_nessy/pipeline/pipeline.py,sha256=-1tJVs9rZf8CcwieH4IP7mqJZ6mL7bQUZ56TNKt8eO8,11154
45
50
  cloe_nessy/pipeline/pipeline_action.py,sha256=S7IVFdmG12fRBzHuE_DiWn7qlMtApz6IloVd2Fj31Sg,1944
46
51
  cloe_nessy/pipeline/pipeline_config.py,sha256=BN3ZSbr6bC-X9edoh-n5vRfPHFMbgtAU7mQ3dBrcWO8,3131
47
52
  cloe_nessy/pipeline/pipeline_context.py,sha256=csElDc6BsynDUtRXgQOSCH7ONc_b-ag0YEg0zlQTz58,1874
48
53
  cloe_nessy/pipeline/pipeline_parsing_service.py,sha256=c_nAsgw81QYBM9AFiTxGgqRhNXABkDKplbeoCJPtbpE,6434
49
54
  cloe_nessy/pipeline/pipeline_step.py,sha256=UlnmpS6gm_dZ7m9dD1mZvye7mvUF_DA7HjOZo0oGYDU,1977
50
- cloe_nessy/pipeline/actions/__init__.py,sha256=LwKctXy4Jun52BnCVGvWa8nnKVjTSov4GT58j6Zy8zg,2273
55
+ cloe_nessy/pipeline/actions/__init__.py,sha256=dvIaWVR-L3IQkxMI-TIazn2udeFGsKmhUxw9E0VTz0g,2370
51
56
  cloe_nessy/pipeline/actions/read_api.py,sha256=RBv5XeHtjTXuCP09Fqo6JNx6iIhQQI-nuAHCuSaGs2s,7778
52
57
  cloe_nessy/pipeline/actions/read_catalog_table.py,sha256=-k2wezkv8bE_xwoW7WM1ORhrCXQagKTUuXkhI2ZEROs,2783
53
58
  cloe_nessy/pipeline/actions/read_excel.py,sha256=Mhl3r_2Hqk2XN7Fl5WqqAyE4JdnwSiivbhWMglyBtkE,7961
@@ -62,6 +67,7 @@ cloe_nessy/pipeline/actions/transform_distinct.py,sha256=c7aBxANyqT4aKhm0cSELDtD
62
67
  cloe_nessy/pipeline/actions/transform_filter.py,sha256=Nz_ggRfKIcNzYFfFOsgq1QeatjdEis0up4I7cOWBdyo,1446
63
68
  cloe_nessy/pipeline/actions/transform_generic_sql.py,sha256=_naWfmPdYAUKjPNeHu5qJAohOL7DHCSYz_kwoeRv3OI,2741
64
69
  cloe_nessy/pipeline/actions/transform_group_aggregate.py,sha256=KUHeeP-RIDi34dpbsPEJkzea5zFJA6MuyjNpOsFud9o,4045
70
+ cloe_nessy/pipeline/actions/transform_hash_columns.py,sha256=heRjBA-Gfu-nmNHOjTYlipEpKY8oNPAHAY40vjJk3aI,8383
65
71
  cloe_nessy/pipeline/actions/transform_join.py,sha256=e_tvMk8YJTAWcUK_EmOgNt0s31ICZoMX_MKOTWx4lBY,3645
66
72
  cloe_nessy/pipeline/actions/transform_json_normalize.py,sha256=petF7pnNq1EKc8MqVdG0weFALAHNILSe_eAu4Z5XxIo,4833
67
73
  cloe_nessy/pipeline/actions/transform_rename_columns.py,sha256=4zJcPCONMU4C67qeuzsrX3AORRRHoq_selUI7FJyeg0,1952
@@ -70,12 +76,12 @@ cloe_nessy/pipeline/actions/transform_select_columns.py,sha256=-GhSEsb7iNnZIsYRm
70
76
  cloe_nessy/pipeline/actions/transform_union.py,sha256=s81Vge0AbYPc7VkskCYfOQ_LEjqcmfNFyDkytfjcZyo,2720
71
77
  cloe_nessy/pipeline/actions/write_catalog_table.py,sha256=j7gRuG3Fedh8JgevIFBbHKock3laJVq4l6Mx3CGU5eo,2676
72
78
  cloe_nessy/session/__init__.py,sha256=t7_YjUhJYW3km_FrucaUdbIl1boQtwkyhw_8yE10qzc,74
73
- cloe_nessy/session/session_manager.py,sha256=PK7awMc6fmot7f9FMmvIUbIzKFgjcy2o2bZS9kjVs10,6733
79
+ cloe_nessy/session/session_manager.py,sha256=f4OeeyGD3becDQGkdDbck3jVH9ulOCBWjW6Jaj_MIrc,7765
74
80
  cloe_nessy/settings/__init__.py,sha256=ZbkneO3WaKOxon7qHFHnou7EnBOSnBFyKMDZblIEvzM,101
75
81
  cloe_nessy/settings/settings.py,sha256=I4n129lrujriW-d8q4as2Kb4_kI932ModfZ5Ow_UpVM,3653
76
82
  cloe_nessy/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
83
  cloe_nessy/utils/file_and_directory_handler.py,sha256=r2EVt9xG81p6ScaJCwETC5an6pMT6WseB0jMOR-JlpU,602
78
- cloe_nessy-0.3.5.dist-info/METADATA,sha256=UUx3aIUgvCLn7j3H4DbCL1k9-47HPKaANiMQsUj66wo,1837
79
- cloe_nessy-0.3.5.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
80
- cloe_nessy-0.3.5.dist-info/top_level.txt,sha256=Z7izn8HmQpg2wBUb-0jzaKlYKMU7Ypzuc9__9vPtW_I,11
81
- cloe_nessy-0.3.5.dist-info/RECORD,,
84
+ cloe_nessy-0.3.8.dist-info/METADATA,sha256=fnnrNC7Vo8REfpUO5hdflH0_zaZAF437CyRrUuCM8dI,2374
85
+ cloe_nessy-0.3.8.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
86
+ cloe_nessy-0.3.8.dist-info/top_level.txt,sha256=Z7izn8HmQpg2wBUb-0jzaKlYKMU7Ypzuc9__9vPtW_I,11
87
+ cloe_nessy-0.3.8.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (80.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,26 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: cloe-nessy
3
- Version: 0.3.5
4
- Summary: Your friendly datalake monster.
5
- Home-page: https://initions.com/
6
- Author: initions
7
- Author-email: ICSMC_EXT_PYPIORG@accenture.com
8
- License: MIT
9
- Requires-Python: <3.12,>=3.11
10
- Requires-Dist: pydantic<3.0.0,>=2.7.2
11
- Requires-Dist: pyyaml<7.0.0,>=6.0.1
12
- Requires-Dist: types-pyyaml<7.0.0.0,>=6.0.12.20240311
13
- Requires-Dist: jinja2<4.0.0,>=3.1.4
14
- Requires-Dist: pydantic-settings<3.0.0,>=2.4.0
15
- Requires-Dist: openpyxl<4.0.0,>=3.1.5
16
- Requires-Dist: requests<3.0.0,>=2.32.3
17
- Requires-Dist: types-requests<3.0.0.0,>=2.32.0.20240712
18
- Requires-Dist: pandas-stubs<3.0.0.0,>=2.2.2.240807
19
- Requires-Dist: azure-identity<2.0.0,>=1.19.0
20
- Requires-Dist: httpx<1.0.0,>=0.27.2
21
- Requires-Dist: databricks-sdk<1.0.0,>=0.36.0
22
- Requires-Dist: networkx<4.0,>=3.3
23
- Requires-Dist: matplotlib<4.0.0,>=3.9.2
24
- Requires-Dist: types-networkx<4.0.0.0,>=3.2.1.20240820
25
- Requires-Dist: fsspec<2025.0.0,>=2024.9.0
26
- Requires-Dist: cloe-logging[databricks,log-analytics]<0.4,>=0.3.7