odibi 2.5.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.
Files changed (124) hide show
  1. odibi/__init__.py +32 -0
  2. odibi/__main__.py +8 -0
  3. odibi/catalog.py +3011 -0
  4. odibi/cli/__init__.py +11 -0
  5. odibi/cli/__main__.py +6 -0
  6. odibi/cli/catalog.py +553 -0
  7. odibi/cli/deploy.py +69 -0
  8. odibi/cli/doctor.py +161 -0
  9. odibi/cli/export.py +66 -0
  10. odibi/cli/graph.py +150 -0
  11. odibi/cli/init_pipeline.py +242 -0
  12. odibi/cli/lineage.py +259 -0
  13. odibi/cli/main.py +215 -0
  14. odibi/cli/run.py +98 -0
  15. odibi/cli/schema.py +208 -0
  16. odibi/cli/secrets.py +232 -0
  17. odibi/cli/story.py +379 -0
  18. odibi/cli/system.py +132 -0
  19. odibi/cli/test.py +286 -0
  20. odibi/cli/ui.py +31 -0
  21. odibi/cli/validate.py +39 -0
  22. odibi/config.py +3541 -0
  23. odibi/connections/__init__.py +9 -0
  24. odibi/connections/azure_adls.py +499 -0
  25. odibi/connections/azure_sql.py +709 -0
  26. odibi/connections/base.py +28 -0
  27. odibi/connections/factory.py +322 -0
  28. odibi/connections/http.py +78 -0
  29. odibi/connections/local.py +119 -0
  30. odibi/connections/local_dbfs.py +61 -0
  31. odibi/constants.py +17 -0
  32. odibi/context.py +528 -0
  33. odibi/diagnostics/__init__.py +12 -0
  34. odibi/diagnostics/delta.py +520 -0
  35. odibi/diagnostics/diff.py +169 -0
  36. odibi/diagnostics/manager.py +171 -0
  37. odibi/engine/__init__.py +20 -0
  38. odibi/engine/base.py +334 -0
  39. odibi/engine/pandas_engine.py +2178 -0
  40. odibi/engine/polars_engine.py +1114 -0
  41. odibi/engine/registry.py +54 -0
  42. odibi/engine/spark_engine.py +2362 -0
  43. odibi/enums.py +7 -0
  44. odibi/exceptions.py +297 -0
  45. odibi/graph.py +426 -0
  46. odibi/introspect.py +1214 -0
  47. odibi/lineage.py +511 -0
  48. odibi/node.py +3341 -0
  49. odibi/orchestration/__init__.py +0 -0
  50. odibi/orchestration/airflow.py +90 -0
  51. odibi/orchestration/dagster.py +77 -0
  52. odibi/patterns/__init__.py +24 -0
  53. odibi/patterns/aggregation.py +599 -0
  54. odibi/patterns/base.py +94 -0
  55. odibi/patterns/date_dimension.py +423 -0
  56. odibi/patterns/dimension.py +696 -0
  57. odibi/patterns/fact.py +748 -0
  58. odibi/patterns/merge.py +128 -0
  59. odibi/patterns/scd2.py +148 -0
  60. odibi/pipeline.py +2382 -0
  61. odibi/plugins.py +80 -0
  62. odibi/project.py +581 -0
  63. odibi/references.py +151 -0
  64. odibi/registry.py +246 -0
  65. odibi/semantics/__init__.py +71 -0
  66. odibi/semantics/materialize.py +392 -0
  67. odibi/semantics/metrics.py +361 -0
  68. odibi/semantics/query.py +743 -0
  69. odibi/semantics/runner.py +430 -0
  70. odibi/semantics/story.py +507 -0
  71. odibi/semantics/views.py +432 -0
  72. odibi/state/__init__.py +1203 -0
  73. odibi/story/__init__.py +55 -0
  74. odibi/story/doc_story.py +554 -0
  75. odibi/story/generator.py +1431 -0
  76. odibi/story/lineage.py +1043 -0
  77. odibi/story/lineage_utils.py +324 -0
  78. odibi/story/metadata.py +608 -0
  79. odibi/story/renderers.py +453 -0
  80. odibi/story/templates/run_story.html +2520 -0
  81. odibi/story/themes.py +216 -0
  82. odibi/testing/__init__.py +13 -0
  83. odibi/testing/assertions.py +75 -0
  84. odibi/testing/fixtures.py +85 -0
  85. odibi/testing/source_pool.py +277 -0
  86. odibi/transformers/__init__.py +122 -0
  87. odibi/transformers/advanced.py +1472 -0
  88. odibi/transformers/delete_detection.py +610 -0
  89. odibi/transformers/manufacturing.py +1029 -0
  90. odibi/transformers/merge_transformer.py +778 -0
  91. odibi/transformers/relational.py +675 -0
  92. odibi/transformers/scd.py +579 -0
  93. odibi/transformers/sql_core.py +1356 -0
  94. odibi/transformers/validation.py +165 -0
  95. odibi/ui/__init__.py +0 -0
  96. odibi/ui/app.py +195 -0
  97. odibi/utils/__init__.py +66 -0
  98. odibi/utils/alerting.py +667 -0
  99. odibi/utils/config_loader.py +343 -0
  100. odibi/utils/console.py +231 -0
  101. odibi/utils/content_hash.py +202 -0
  102. odibi/utils/duration.py +43 -0
  103. odibi/utils/encoding.py +102 -0
  104. odibi/utils/extensions.py +28 -0
  105. odibi/utils/hashing.py +61 -0
  106. odibi/utils/logging.py +203 -0
  107. odibi/utils/logging_context.py +740 -0
  108. odibi/utils/progress.py +429 -0
  109. odibi/utils/setup_helpers.py +302 -0
  110. odibi/utils/telemetry.py +140 -0
  111. odibi/validation/__init__.py +62 -0
  112. odibi/validation/engine.py +765 -0
  113. odibi/validation/explanation_linter.py +155 -0
  114. odibi/validation/fk.py +547 -0
  115. odibi/validation/gate.py +252 -0
  116. odibi/validation/quarantine.py +605 -0
  117. odibi/writers/__init__.py +15 -0
  118. odibi/writers/sql_server_writer.py +2081 -0
  119. odibi-2.5.0.dist-info/METADATA +255 -0
  120. odibi-2.5.0.dist-info/RECORD +124 -0
  121. odibi-2.5.0.dist-info/WHEEL +5 -0
  122. odibi-2.5.0.dist-info/entry_points.txt +2 -0
  123. odibi-2.5.0.dist-info/licenses/LICENSE +190 -0
  124. odibi-2.5.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,255 @@
1
+ Metadata-Version: 2.4
2
+ Name: odibi
3
+ Version: 2.5.0
4
+ Summary: A declarative data engineering framework - Explicit over implicit, Stories over magic
5
+ Author-email: Henry Odibi <odibiengineering@gmail.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/henryodibi11/Odibi
8
+ Project-URL: Documentation, https://github.com/henryodibi11/Odibi/tree/main/docs
9
+ Project-URL: Repository, https://github.com/henryodibi11/Odibi
10
+ Project-URL: Issues, https://github.com/henryodibi11/Odibi/issues
11
+ Keywords: data-engineering,pipeline,etl,workflow,orchestration
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.9
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: pydantic<3.0.0,>=2.0.0
24
+ Requires-Dist: pyyaml<7.0,>=6.0
25
+ Requires-Dist: pandas<2.2.0,>=2.0.0
26
+ Requires-Dist: numpy<2.0.0,>=1.24.0
27
+ Requires-Dist: bottleneck<2.0.0,>=1.3.6
28
+ Requires-Dist: python-dotenv<2.0.0,>=1.0.0
29
+ Requires-Dist: markdown2<3.0.0,>=2.4.0
30
+ Requires-Dist: Jinja2<4.0.0,>=3.1.0
31
+ Requires-Dist: portalocker<3.0.0,>=2.7.0
32
+ Requires-Dist: pyarrow<17.0.0,>=14.0.0
33
+ Requires-Dist: fastapi<1.0.0,>=0.100.0
34
+ Requires-Dist: uvicorn<1.0.0,>=0.20.0
35
+ Requires-Dist: deltalake<0.18.0,>=0.15.0
36
+ Requires-Dist: rich<14.0.0,>=13.0.0
37
+ Requires-Dist: requests<3.0.0,>=2.28.0
38
+ Requires-Dist: importlib_metadata>=4.0.0
39
+ Requires-Dist: duckdb<1.1.0,>=0.9.0
40
+ Provides-Extra: cli
41
+ Requires-Dist: rich>=13.0.0; extra == "cli"
42
+ Provides-Extra: lineage
43
+ Requires-Dist: openlineage-python>=1.0.0; extra == "lineage"
44
+ Provides-Extra: telemetry
45
+ Requires-Dist: opentelemetry-api>=1.20.0; extra == "telemetry"
46
+ Requires-Dist: opentelemetry-sdk>=1.20.0; extra == "telemetry"
47
+ Requires-Dist: opentelemetry-exporter-otlp>=1.20.0; extra == "telemetry"
48
+ Provides-Extra: spark
49
+ Requires-Dist: pyspark>=3.4.0; extra == "spark"
50
+ Requires-Dist: delta-spark>=2.3.0; extra == "spark"
51
+ Provides-Extra: pandas
52
+ Requires-Dist: duckdb>=0.9.0; extra == "pandas"
53
+ Requires-Dist: pandasql>=0.7.3; extra == "pandas"
54
+ Requires-Dist: fastavro>=1.8.0; extra == "pandas"
55
+ Provides-Extra: azure
56
+ Requires-Dist: azure-storage-blob>=12.0.0; extra == "azure"
57
+ Requires-Dist: azure-identity>=1.14.0; extra == "azure"
58
+ Requires-Dist: azure-keyvault-secrets>=4.7.0; extra == "azure"
59
+ Requires-Dist: adlfs>=2023.1.0; extra == "azure"
60
+ Provides-Extra: sql
61
+ Requires-Dist: pyodbc>=5.0.0; extra == "sql"
62
+ Requires-Dist: sqlalchemy>=2.0.0; extra == "sql"
63
+ Provides-Extra: polars
64
+ Requires-Dist: polars>=0.20.0; extra == "polars"
65
+ Provides-Extra: all
66
+ Requires-Dist: pyspark>=3.4.0; extra == "all"
67
+ Requires-Dist: delta-spark>=2.3.0; extra == "all"
68
+ Requires-Dist: duckdb>=0.9.0; extra == "all"
69
+ Requires-Dist: pandasql>=0.7.3; extra == "all"
70
+ Requires-Dist: deltalake>=0.13.0; extra == "all"
71
+ Requires-Dist: fastavro>=1.8.0; extra == "all"
72
+ Requires-Dist: pyarrow>=10.0.0; extra == "all"
73
+ Requires-Dist: azure-storage-blob>=12.0.0; extra == "all"
74
+ Requires-Dist: azure-identity>=1.14.0; extra == "all"
75
+ Requires-Dist: azure-keyvault-secrets>=4.7.0; extra == "all"
76
+ Requires-Dist: adlfs>=2023.1.0; extra == "all"
77
+ Requires-Dist: pyodbc>=5.0.0; extra == "all"
78
+ Requires-Dist: sqlalchemy>=2.0.0; extra == "all"
79
+ Requires-Dist: polars>=0.20.0; extra == "all"
80
+ Requires-Dist: opentelemetry-api>=1.20.0; extra == "all"
81
+ Requires-Dist: opentelemetry-sdk>=1.20.0; extra == "all"
82
+ Requires-Dist: opentelemetry-exporter-otlp>=1.20.0; extra == "all"
83
+ Requires-Dist: openlineage-python>=1.0.0; extra == "all"
84
+ Requires-Dist: rich>=13.0.0; extra == "all"
85
+ Requires-Dist: gradio>=4.0.0; extra == "all"
86
+ Provides-Extra: dev
87
+ Requires-Dist: pytest>=7.4.0; extra == "dev"
88
+ Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
89
+ Requires-Dist: black>=23.0.0; extra == "dev"
90
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
91
+ Requires-Dist: mypy>=1.5.0; extra == "dev"
92
+ Requires-Dist: pre-commit>=3.4.0; extra == "dev"
93
+ Requires-Dist: pyspark>=3.4.0; extra == "dev"
94
+ Requires-Dist: delta-spark>=2.3.0; extra == "dev"
95
+ Requires-Dist: pyarrow>=10.0.0; extra == "dev"
96
+ Requires-Dist: azure-identity>=1.14.0; extra == "dev"
97
+ Requires-Dist: azure-keyvault-secrets>=4.7.0; extra == "dev"
98
+ Requires-Dist: deltalake>=0.13.0; extra == "dev"
99
+ Requires-Dist: duckdb>=0.9.0; extra == "dev"
100
+ Requires-Dist: pandasql>=0.7.3; extra == "dev"
101
+ Requires-Dist: mkdocs-material>=9.0.0; extra == "dev"
102
+ Requires-Dist: mkdocstrings[python]>=0.20.0; extra == "dev"
103
+ Requires-Dist: rich>=13.0.0; extra == "dev"
104
+ Dynamic: license-file
105
+
106
+ # Odibi
107
+
108
+ **Declarative data pipelines. YAML in, star schemas out.**
109
+
110
+ [![CI](https://github.com/henryodibi11/Odibi/workflows/CI/badge.svg)](https://github.com/henryodibi11/Odibi/actions)
111
+ [![PyPI](https://img.shields.io/pypi/v/odibi.svg)](https://pypi.org/project/odibi/)
112
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
113
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
114
+ [![Docs](https://img.shields.io/badge/docs-GitHub%20Pages-blue)](https://henryodibi11.github.io/Odibi/)
115
+
116
+ Odibi is a framework for building data pipelines. You describe *what* you want in YAML; Odibi handles *how*. Every run generates a "Data Story" — an audit report showing exactly what happened to your data.
117
+
118
+ ---
119
+
120
+ ## ⚡ Quick Start
121
+
122
+ ```bash
123
+ pip install odibi
124
+ ```
125
+
126
+ Clone and run the reference example:
127
+
128
+ ```bash
129
+ git clone https://github.com/henryodibi11/Odibi.git
130
+ cd Odibi/docs/examples/canonical/runnable
131
+ odibi run 04_fact_table.yaml
132
+ ```
133
+
134
+ This builds a complete **star schema** in seconds:
135
+ - 3 dimension tables (customer, product, date)
136
+ - 1 fact table with FK lookups and orphan handling
137
+ - HTML audit report
138
+
139
+ **[See the full breakdown →](docs/examples/canonical/THE_REFERENCE.md)**
140
+
141
+ ---
142
+
143
+ ## 📖 The Canonical Example
144
+
145
+ ```yaml
146
+ pipelines:
147
+ - pipeline: build_dimensions
148
+ nodes:
149
+ - name: dim_customer
150
+ read:
151
+ connection: source
152
+ format: csv
153
+ path: customers.csv
154
+ pattern:
155
+ type: dimension
156
+ params:
157
+ natural_key: customer_id
158
+ surrogate_key: customer_sk
159
+ scd_type: 1
160
+ write:
161
+ connection: gold
162
+ format: parquet
163
+ path: dim_customer
164
+
165
+ - name: dim_date
166
+ pattern:
167
+ type: date_dimension
168
+ params:
169
+ start_date: "2025-01-01"
170
+ end_date: "2025-12-31"
171
+ write:
172
+ connection: gold
173
+ format: parquet
174
+ path: dim_date
175
+
176
+ - pipeline: build_facts
177
+ nodes:
178
+ - name: fact_sales
179
+ depends_on: [dim_customer, dim_date]
180
+ read:
181
+ connection: source
182
+ format: csv
183
+ path: orders.csv
184
+ pattern:
185
+ type: fact
186
+ params:
187
+ grain: [order_id, line_item_id]
188
+ dimensions:
189
+ - source_column: customer_id
190
+ dimension_table: dim_customer
191
+ dimension_key: customer_id
192
+ surrogate_key: customer_sk
193
+ orphan_handling: unknown
194
+ write:
195
+ connection: gold
196
+ format: parquet
197
+ path: fact_sales
198
+ ```
199
+
200
+ **[Full runnable example →](docs/examples/canonical/runnable/04_fact_table.yaml)**
201
+
202
+ ---
203
+
204
+ ## 🚀 Key Features
205
+
206
+ | Feature | Description |
207
+ |---------|-------------|
208
+ | **Data Stories** | Every run generates an HTML audit report |
209
+ | **Dimensional Patterns** | SCD1/SCD2, date dimension, fact tables built-in |
210
+ | **Validation & Contracts** | Fail-fast checks, quarantine bad rows |
211
+ | **Dual Engine** | Pandas locally, Spark in production — same config |
212
+ | **Production Ready** | Retry, alerting, secrets, Delta Lake support |
213
+
214
+ ---
215
+
216
+ ## 📚 Documentation
217
+
218
+ | Goal | Link |
219
+ |------|------|
220
+ | **Get running in 10 minutes** | [Golden Path](docs/golden_path.md) |
221
+ | **Copy THE working example** | [THE_REFERENCE.md](docs/examples/canonical/THE_REFERENCE.md) |
222
+ | **Solve a specific problem** | [Playbook](docs/playbook/README.md) |
223
+ | **Understand when to use what** | [Decision Guide](docs/guides/decision_guide.md) |
224
+ | **See all config options** | [YAML Schema](docs/reference/yaml_schema.md) |
225
+
226
+ ---
227
+
228
+ ## 📦 Installation
229
+
230
+ ```bash
231
+ # Standard (Pandas engine)
232
+ pip install odibi
233
+
234
+ # With Spark + Azure support
235
+ pip install "odibi[spark,azure]"
236
+ ```
237
+
238
+ ---
239
+
240
+ ## 🎯 Who is this for?
241
+
242
+ - **Solo data engineers** building pipelines without a team
243
+ - **Analytics engineers** moving from dbt to Python-based pipelines
244
+ - **Anyone** tired of writing the same boilerplate for every project
245
+
246
+ ---
247
+
248
+ ## 🤝 Contributing
249
+
250
+ We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md).
251
+
252
+ ---
253
+
254
+ **Maintainer:** Henry Odibi ([@henryodibi11](https://github.com/henryodibi11))
255
+ **License:** Apache 2.0
@@ -0,0 +1,124 @@
1
+ odibi/__init__.py,sha256=ivFfyiyku4_uO7_czZ18qo_IyfNlbDN6fQ5QbG06r3I,857
2
+ odibi/__main__.py,sha256=PnsabR5HUc4frt282jrLkborWHq7wNbBHLon7ufCkGw,133
3
+ odibi/catalog.py,sha256=2EuqcY--g6gHqS15BBeoegiKKZ8hAfnKIR0UOaNasLQ,115445
4
+ odibi/config.py,sha256=fG2CbqckcXub7BR-sE_3ycLfp_3ABx9w7nz9tIu-zeU,116742
5
+ odibi/constants.py,sha256=PoKPnW-TVP1cBxG_oGloCgT3-Bfbk92P4PEEOGYbMZ0,379
6
+ odibi/context.py,sha256=pmw_5QCSvU6myK-mey2a89BDkIzfA37t7yWwHwFOOuU,16409
7
+ odibi/enums.py,sha256=geIaJkMA5o35Hf-pENbgjurooEw4Tow_2Qm2yUKdKXA,117
8
+ odibi/exceptions.py,sha256=sc2RaUwjym1TT9yaHpU9_du8ZdYHrEBr9oZrLQMJ3wo,10729
9
+ odibi/graph.py,sha256=k3yh3tGhaR0JBoLsz9KY5QU1BhE5x5c0L3IaXcdFhMI,15351
10
+ odibi/introspect.py,sha256=q2ZiyNM1LxFLxdJyznUuRsfIeaTkentfiwz2UQcGbYI,41362
11
+ odibi/lineage.py,sha256=7uAmkd1e5O9krvBoj325W7CscY7PcsQGIz9PbcAI9Ys,17061
12
+ odibi/node.py,sha256=kZl5KP1cOrSXKTbzgJ30rGwYIv7jcPe575W1gaNNh_E,138166
13
+ odibi/pipeline.py,sha256=_Tl_uQZT7_jQbdeqyD_OyHky8j47ZHkMofD2o7RT6pQ,93991
14
+ odibi/plugins.py,sha256=kva497eZMLGVqSvwV5d4eJI399OgiCQoKN-FrPnAyio,2729
15
+ odibi/project.py,sha256=Nahl21uj2Fanv3teb3baqx0D-KmiWWfVmHLtRClBMCE,20495
16
+ odibi/references.py,sha256=hn59Dar_n-vl4leAmOFA12P9FWMDqAI2_yopof_xRIo,4428
17
+ odibi/registry.py,sha256=HYNZZhhLVp6WWGTiju61vHz4aVWTQFvkg9l90RRVZBY,7881
18
+ odibi/cli/__init__.py,sha256=cp1Nh-Uz0yZPuQv6J0Tmz2VQkjLigk8TiKCrnxQ80q4,210
19
+ odibi/cli/__main__.py,sha256=LAQ9utFLWbL2qei7vEoqxSRbpz0sI7oqpqTx1TVPDdk,118
20
+ odibi/cli/catalog.py,sha256=LpUXTvkwEVt1jo61RIDnXCYmkHXnnWoMGAbyaIdKmis,18152
21
+ odibi/cli/deploy.py,sha256=9aB9Q-WBEaMpCpu-C2ekBO_CEpw_g-qy13-pQFx8Zu0,2542
22
+ odibi/cli/doctor.py,sha256=FBsSnDguwNX0-RxxKk6oo93nUQp7lZt5PO7BnZDiS-I,4612
23
+ odibi/cli/export.py,sha256=33SUzpTHAw08lUnYsQ5CDyDxI8V7MgUiWM7Cx5FHQ2Q,2284
24
+ odibi/cli/graph.py,sha256=r1vTpkB6k23wEjIsk0pxoiX5rdHJ-wAZOzr3B1RlSs8,4581
25
+ odibi/cli/init_pipeline.py,sha256=WVjIjvv2ifCGrl38hTd-KnGqFNtWVAztQW4WNETzT0E,7166
26
+ odibi/cli/lineage.py,sha256=ieljCf7PXT_VY3844JhNkqSTnKL66_IYLWmwlE8ydM0,8451
27
+ odibi/cli/main.py,sha256=Znw9FTtW8JLyKw2xKNoekDNvzDuAmH0-bLGWnRUprSI,7153
28
+ odibi/cli/run.py,sha256=LYleanOx7n7YdMUJVAcWErEmFkcKm2d6bAjjfuHnwcE,3825
29
+ odibi/cli/schema.py,sha256=yUJWhqDcFONUycj-5XNbhgSnzupYRKdQwKgILV3p8jQ,6968
30
+ odibi/cli/secrets.py,sha256=-jjyty--VUSyXCtFEG0N4G8wr8Ds8CUxE3dKWqNxxaQ,6920
31
+ odibi/cli/story.py,sha256=iQBNEHwRekbn132xLFFgfookubtq00Y9feLD5oc3nvY,11832
32
+ odibi/cli/system.py,sha256=Gbhvnvdx6YExbidizAtKHIY8O6jNZ67SqzQfzwtpSYM,4223
33
+ odibi/cli/test.py,sha256=i-LtuLhywH0mRRQ72Xv0cwmPbtUeqEaeAzn4-2LXMCA,10605
34
+ odibi/cli/ui.py,sha256=oPMC3eGNjHO3oVgFf518lxoAnIO_7ST97XK27vVqAfc,910
35
+ odibi/cli/validate.py,sha256=PF6cn5WAX0fROw2C-qU_jMYRdHDgRPEy8xvI5eOdwoo,1346
36
+ odibi/connections/__init__.py,sha256=eMtbzLw9WghcIWR3fRLDZ8sA6hu_Q1vydRBfypVP87U,385
37
+ odibi/connections/azure_adls.py,sha256=WXvHybPRHONWSVmPYy3J7p4W7rO_aLkUSZcJ_ygwOT4,19609
38
+ odibi/connections/azure_sql.py,sha256=_jHB_5oso-bsKY61zHXvRFbWpLs50ythCxC8DHhNoeE,23486
39
+ odibi/connections/base.py,sha256=wAQwgr7qJULIac1YBizQ5l85ody-zIeHVBmEbax-Il4,601
40
+ odibi/connections/factory.py,sha256=twD74BZFKw1RshPHOFp632q5TnlFp6xPd2yUR5HgodM,10956
41
+ odibi/connections/http.py,sha256=fdSd-wKV84mZlmBVsBGZnO9Y_Gxx_4qVxvpXHhDb9Wo,2392
42
+ odibi/connections/local.py,sha256=h7J-xaTcqjVYo8nzfai1O6nxZwY9jF0oIxSDpzMBqjs,3954
43
+ odibi/connections/local_dbfs.py,sha256=VpRGJ8MDKl06BrOP3TmDJW5rHp_afRrggGtdIneEaus,1749
44
+ odibi/diagnostics/__init__.py,sha256=PYsLwvj1ad3HqA5R7rvz9gCyvTE5Q5gOqNQZXCplBbA,332
45
+ odibi/diagnostics/delta.py,sha256=gVDWO5xFTSm4dpq8uLOEQQdxeu0IQzO6kl_wITCSDfc,19371
46
+ odibi/diagnostics/diff.py,sha256=ly0C0Nne3fDy-MU8dOg4oQVba7h-7t3R43Op2PVy6i0,4983
47
+ odibi/diagnostics/manager.py,sha256=0XaqFt-kij_ayqHCoVhr3WjM3R9AjWS0NiJEhZgip3k,6178
48
+ odibi/engine/__init__.py,sha256=njFObDL6hQfCI6twV_NMf9wZTruT0sSv3aa1suanrx0,534
49
+ odibi/engine/base.py,sha256=unjG2bL8crBM8KdONlQpRgNESm_cRu0nVgmjtcNeHEA,8889
50
+ odibi/engine/pandas_engine.py,sha256=BAiK-7_dDANIMIAOfi4Q3kFWSB9TRxEaminJdV2kw8M,78181
51
+ odibi/engine/polars_engine.py,sha256=M1SWkmdNifojtsYZn6L2q2BUJDVZZQQdultyBXBoVtc,41382
52
+ odibi/engine/registry.py,sha256=agR2sKcO8gzgESd42edwBo-OFeUMXOF0BlB7fKmXXW8,1170
53
+ odibi/engine/spark_engine.py,sha256=TkJKgVUZBD1CrldwTutE1DixjyB9uRWDc8EnvjsmFnM,92720
54
+ odibi/orchestration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ odibi/orchestration/airflow.py,sha256=E5PUqiwNqmFK1vuDvL1GQB2Ytaqvj6eZ8CZezk3C_8s,2694
56
+ odibi/orchestration/dagster.py,sha256=FgAgRyZTbRDfvmqgRuCzqjhisfQ97u5WNmj6ka7Q-cY,2744
57
+ odibi/patterns/__init__.py,sha256=VtEsHQ3id3D0OW3Ieg4BcqhGPo6MdKNMGZ7s1RdH0Fk,820
58
+ odibi/patterns/aggregation.py,sha256=EuobqszsG1GULkAsyIbapl4cRm1ble8NeTI-sBCBPcw,22072
59
+ odibi/patterns/base.py,sha256=Tbw-vyN_UxILu8z1spBVRbX6kAKTdAFxtgBFuKM4BFQ,2842
60
+ odibi/patterns/date_dimension.py,sha256=WNg4HmZ1u6a7d6wFBXUUs5BkB-_yFPVoM369RCYlMzU,15744
61
+ odibi/patterns/dimension.py,sha256=Q1s0F4d-5LuZqCwdIOZsxkKN6ZASTOg83uA2pZvJZBA,27043
62
+ odibi/patterns/fact.py,sha256=DOz8yvt4BuXpm88jPE17Fz1Ek2goKFgKTDfc8cqsiXA,26969
63
+ odibi/patterns/merge.py,sha256=_zmL2xgGW09iV8CrA4W2R1LLLGUt5lvJST2D1xK4n0Q,4484
64
+ odibi/patterns/scd2.py,sha256=RNZXw8ImZut8wmqWPFl9b0i6KaTBBXMH8L-AIY_mMtU,5278
65
+ odibi/semantics/__init__.py,sha256=xrFDtzHFa6CkcFxtLR2KsmjYUUI1v2XzSzYcz4SKLE0,2034
66
+ odibi/semantics/materialize.py,sha256=xPjET3_4Ev_kQ0pi_VlDGkXLcW8oqr2bMyU1HKu1lY4,12065
67
+ odibi/semantics/metrics.py,sha256=0Jjpw2VER0z-kaRKQuKh5cGic93ePiwnrtaRzWVcJzY,13762
68
+ odibi/semantics/query.py,sha256=t8oGC3MNHNo36e43JYf7toL61y5tP162Xk0qpuuw4xE,24982
69
+ odibi/semantics/runner.py,sha256=4q7Yztb6IINFtY_Vv9M70OOPlacceD7mJ6zH95bh87c,15492
70
+ odibi/semantics/story.py,sha256=8Sg00JqmmiP-xe14x1t_AyID2DsSuQQ5wpL0z0fEy-I,16991
71
+ odibi/semantics/views.py,sha256=sshVTY7EeVMZBishyr_4SeS_xiPv26VRqcOLS0JP5OM,15220
72
+ odibi/state/__init__.py,sha256=OVqubb2PfUKHR7wfIPvko5KBgHeFoGQpIRHsZkcfqP4,42214
73
+ odibi/story/__init__.py,sha256=OuJtg6szve_YNvin-sbXuJfRzZRJAY6KmBdIs8h2j3w,1258
74
+ odibi/story/doc_story.py,sha256=zIoWN8TZ9T46SAEgUwjvLUHcJkkx0y9yDUUJPL5t3QE,18493
75
+ odibi/story/generator.py,sha256=mcgh96W0QxzMOLA61vDFi49_QJR_g2KHD9XOQViB7ZU,56233
76
+ odibi/story/lineage.py,sha256=Q9rv6PPLU1jVsjAyIWGPubU3VoOk4XjAKwYnt2W5AxM,37810
77
+ odibi/story/lineage_utils.py,sha256=vBGYWY8Tq9POJg3UZNadEmh04wnwRfSgwDPMKsh4oe8,10533
78
+ odibi/story/metadata.py,sha256=XEtF1X3N3tsis_nvO007hYP_uzKH13ImO6FrCxNGqMk,22921
79
+ odibi/story/renderers.py,sha256=uOBYygcezH53uo5v8acgs1cKx9Td1PPQ9EGbJirqVUA,14461
80
+ odibi/story/themes.py,sha256=NQVoAV2o2vyghEGJH00-3Q-dex1PdEeMNtvNoK_8epQ,5161
81
+ odibi/story/templates/run_story.html,sha256=tMHre8DsqlzfuWGVYSQVgJVrmaBIEUlKWoK6JqfPnb0,127380
82
+ odibi/testing/__init__.py,sha256=v8Yajz4PVrATnYAHn1FZId9cz_MB1L2tL1rq1t75yj8,308
83
+ odibi/testing/assertions.py,sha256=qFaZVXIDxsrRfst9VEisJuKynkEQFOLuA79bcT9fgm8,2104
84
+ odibi/testing/fixtures.py,sha256=OTAdjH60unJVm79dQxzHIraBZHbBl0GJl8AKS95LVeU,2383
85
+ odibi/testing/source_pool.py,sha256=aaItO7kR0E2uI7mLMKcC9ZOkQ0pk55VXnkA6eccXV0s,9839
86
+ odibi/transformers/__init__.py,sha256=F8GKXGQlsV1K4-NK0VhBEszZCv03uMSXUQi0zZTP2Nk,5886
87
+ odibi/transformers/advanced.py,sha256=4bOEaBlu1rkaTJPqNVS0WfoO0ikHhNCtfMeBh0zt9-s,50950
88
+ odibi/transformers/delete_detection.py,sha256=Q2EEz7R-c1dqB9H38FrWy3XFPWyeXP3VUoSwvkRPY6k,22240
89
+ odibi/transformers/manufacturing.py,sha256=udrkYdY5sHCL-jACf0T5xtNe_IrLIDxSmKkI5xKPesk,35715
90
+ odibi/transformers/merge_transformer.py,sha256=fhdzO9zedcshyMoyexog12jHU2Wy3QQyS1NU0UVKDQk,29100
91
+ odibi/transformers/relational.py,sha256=hwzHUNPLW0s8r1oiuXi0m5X0Y7L0mFz0I2e0y1Vd5Kk,21331
92
+ odibi/transformers/scd.py,sha256=83qUJYJ-WZaBnY9P1qIS8seK0J1GmYVQdP6pyTm_Vko,21359
93
+ odibi/transformers/sql_core.py,sha256=ArSII6Vhnis3lfCk05iw3AczhTgLWZxgXF7TE3muWvI,39724
94
+ odibi/transformers/validation.py,sha256=ygV5lskUU7_hRkmeuBxOp8JnQ3wZjlCZoH6ppOKy0H4,5009
95
+ odibi/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
+ odibi/ui/app.py,sha256=9dGruNzXxd_saolTkgq4Y723lIR0LJLBOVXHwm1NfvM,7192
97
+ odibi/utils/__init__.py,sha256=RCgja1_MP3eWa5l9WSSg3wmaynxV4dSCu_YiBer7hj4,1516
98
+ odibi/utils/alerting.py,sha256=gu6wSp6m40NnLUYFQ-LG33qtRll9mgf6uaFilYM2MBQ,21349
99
+ odibi/utils/config_loader.py,sha256=CxCXyumbHb2d0rLr0TjMahIdsndFD3aU9oo35t66bu8,12807
100
+ odibi/utils/console.py,sha256=wKdZQJgNlK1X8xxJAjPdBQEAbPyO_fKs3l2_GAtzUjc,6271
101
+ odibi/utils/content_hash.py,sha256=CcqsB_qI7LONbUSsa75oY5r-56L_PZ5_IhkaoKcDITc,6387
102
+ odibi/utils/duration.py,sha256=4M50sBc6BHImSGn7tR00gRd2zGUOQBDv-n5CGT2wx_I,1321
103
+ odibi/utils/encoding.py,sha256=8KgzhYlkWpNEssk7MfxGXSkB4s0Taa6qCW9nF30IWBs,3124
104
+ odibi/utils/extensions.py,sha256=K1m4pdQmfl3a41WqB5AQ_S_WiyvKntiHAWrkSqd9VAk,1030
105
+ odibi/utils/hashing.py,sha256=UFc1RIB9fUq4Nz_9MwEB_CPHQ4EpavZSNb_71eKlkes,1665
106
+ odibi/utils/logging.py,sha256=RiWiNWMHxTvYgoegeorsbJwZK5QZ5ued4xpylCA-V0U,6458
107
+ odibi/utils/logging_context.py,sha256=H2eh81Ukoxf0aRgdb8heioJKlCMB-oGdZbov0nVrVVs,23309
108
+ odibi/utils/progress.py,sha256=vHMPFDpQNZyd1pu-kFIS5RIzQft0j5UuHMxz82a1sIU,14590
109
+ odibi/utils/setup_helpers.py,sha256=oDMb7EFIDvibj4iyW2cLQPvlrVEFEJX9HkiabYykX7I,9824
110
+ odibi/utils/telemetry.py,sha256=VfWwvTvou-x5olSF8hwoyoQa1mPvrRAdX-Ur3AuCSWI,3251
111
+ odibi/validation/__init__.py,sha256=uF-hRjw5C3kRS77mldudaXZ09c6o9sYFeu_B5f4UJX4,1634
112
+ odibi/validation/engine.py,sha256=ni8imznrHcDMFRCSnHSUqP59nWlm8ZnAsQc3KIWP1oI,32296
113
+ odibi/validation/explanation_linter.py,sha256=PbnmMwzamn-XoKtuPJeQwkLE22okrdPgXO9dFywbYQs,4705
114
+ odibi/validation/fk.py,sha256=ycljfGwJLcFbhXLlGkwuZgOCZl-4F3rwl4vfjdqH9vI,17351
115
+ odibi/validation/gate.py,sha256=eWYceT--sA-lwcLFuJo1ZMisZBC6QnWmR5Kzh81TEk8,7881
116
+ odibi/validation/quarantine.py,sha256=W8NdvFC37JNNFOWwa2J8SmoYgOrtTKr9pjI4D3UMCjY,18253
117
+ odibi/writers/__init__.py,sha256=01t_uXfE1zu4sGQEEaJyBt_A9GIDhd7Zc7LNB7yHrzo,305
118
+ odibi/writers/sql_server_writer.py,sha256=X1vLgZlmIkTfbeaDEODcBbNPJERtLscXyTz9fOFO1Vg,78079
119
+ odibi-2.5.0.dist-info/licenses/LICENSE,sha256=A1JXcpthUgwIx4xHJqpRkoDHN0UNPMwugjyC0KWqD_E,10760
120
+ odibi-2.5.0.dist-info/METADATA,sha256=P1gAS5miE_ugYbaXUsDGJWBP40Ie2787MsD26xHOc5o,8920
121
+ odibi-2.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
122
+ odibi-2.5.0.dist-info/entry_points.txt,sha256=HD43sDXxhe9zPLqrvOiLatqionwZKWNJyvfMAvbi2XM,41
123
+ odibi-2.5.0.dist-info/top_level.txt,sha256=ieaSuSU9RbfS6UWwymghJvyt8JA9nPQ8XaEvVIjp_Fo,6
124
+ odibi-2.5.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ odibi = odibi.cli:main
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to the Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2025 Henry Odibi
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1 @@
1
+ odibi