etlplus 0.5.1__py3-none-any.whl → 0.5.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: etlplus
3
- Version: 0.5.1
3
+ Version: 0.5.3
4
4
  Summary: A Swiss Army knife for simple ETL operations
5
5
  Home-page: https://github.com/Dagitali/ETLPlus
6
6
  Author: ETLPlus Team
@@ -61,6 +61,8 @@ package and command-line interface for data extraction, validation, transformati
61
61
  - [Quickstart](#quickstart)
62
62
  - [Usage](#usage)
63
63
  - [Command Line Interface](#command-line-interface)
64
+ - [Inspect Pipelines](#inspect-pipelines)
65
+ - [Render SQL DDL](#render-sql-ddl)
64
66
  - [Extract Data](#extract-data)
65
67
  - [Validate Data](#validate-data)
66
68
  - [Transform Data](#transform-data)
@@ -88,6 +90,14 @@ package and command-line interface for data extraction, validation, transformati
88
90
 
89
91
  ## Features
90
92
 
93
+ - **Inspect** data pipeline definitions before running them:
94
+ - Summarize jobs, sources, targets, and transforms
95
+ - Confirm configuration changes by printing focused sections on demand
96
+
97
+ - **Render** SQL DDL from shared table specs:
98
+ - Generate CREATE TABLE or view statements
99
+ - Swap templates or direct output to files for database migrations
100
+
91
101
  - **Extract** data from multiple sources:
92
102
  - Files (CSV, JSON, XML, YAML)
93
103
  - Databases (connection string support)
@@ -169,6 +179,44 @@ etlplus --help
169
179
  etlplus --version
170
180
  ```
171
181
 
182
+ #### Inspect Pipelines
183
+
184
+ Use `etlplus list` to explore pipeline YAML definitions without running them. The command can print
185
+ job names, summarize configured sources and targets, or drill into specific sections.
186
+
187
+ List jobs and show a pipeline summary:
188
+ ```bash
189
+ etlplus list --config examples/configs/pipeline.yml --jobs
190
+ etlplus list --config examples/configs/pipeline.yml --summary
191
+ ```
192
+
193
+ Show sources or transforms for troubleshooting:
194
+ ```bash
195
+ etlplus list --config examples/configs/pipeline.yml --sources
196
+ etlplus list --config examples/configs/pipeline.yml --transforms
197
+ ```
198
+
199
+ #### Render SQL DDL
200
+
201
+ Use `etlplus render` to turn table schema specs into ready-to-run SQL. Render from a pipeline config
202
+ or from a standalone schema file, and choose the built-in `ddl` or `view` templates (or provide your
203
+ own).
204
+
205
+ Render all tables defined in a pipeline:
206
+ ```bash
207
+ etlplus render --config examples/configs/pipeline.yml --template ddl
208
+ ```
209
+
210
+ Render a single table in that pipeline:
211
+ ```bash
212
+ etlplus render --config examples/configs/pipeline.yml --table customers --template view
213
+ ```
214
+
215
+ Render from a standalone table spec to a file:
216
+ ```bash
217
+ etlplus render --spec schemas/customer.yml --template view -o temp/customer_view.sql
218
+ ```
219
+
172
220
  #### Extract Data
173
221
 
174
222
  Note: For file sources, the format is normally inferred from the filename extension. Use
@@ -47,9 +47,9 @@ etlplus/templates/ddl.sql.j2,sha256=s8fMWvcb4eaJVXkifuib1aQPljtZ8buuyB_uA-ZdU3Q,
47
47
  etlplus/templates/view.sql.j2,sha256=Iy8DHfhq5yyvrUKDxqp_aHIEXY4Tm6j4wT7YDEFWAhk,2180
48
48
  etlplus/validation/__init__.py,sha256=Pe5Xg1_EA4uiNZGYu5WTF3j7odjmyxnAJ8rcioaplSQ,1254
49
49
  etlplus/validation/utils.py,sha256=Mtqg449VIke0ziy_wd2r6yrwJzQkA1iulZC87FzXMjo,10201
50
- etlplus-0.5.1.dist-info/licenses/LICENSE,sha256=MuNO63i6kWmgnV2pbP2SLqP54mk1BGmu7CmbtxMmT-U,1069
51
- etlplus-0.5.1.dist-info/METADATA,sha256=_jyHbbKnTHnDCxcFjzKjUbPlgJVTHfonDBExSFPGzZU,17635
52
- etlplus-0.5.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
53
- etlplus-0.5.1.dist-info/entry_points.txt,sha256=6w-2-jzuPa55spzK34h-UKh2JTEShh38adFRONNP9QE,45
54
- etlplus-0.5.1.dist-info/top_level.txt,sha256=aWWF-udn_sLGuHTM6W6MLh99ArS9ROkUWO8Mi8y1_2U,8
55
- etlplus-0.5.1.dist-info/RECORD,,
50
+ etlplus-0.5.3.dist-info/licenses/LICENSE,sha256=MuNO63i6kWmgnV2pbP2SLqP54mk1BGmu7CmbtxMmT-U,1069
51
+ etlplus-0.5.3.dist-info/METADATA,sha256=yaJ4G8RA4EjaQwWoCabTSrylNu55kjkDFHFYNIaVabE,19285
52
+ etlplus-0.5.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
53
+ etlplus-0.5.3.dist-info/entry_points.txt,sha256=6w-2-jzuPa55spzK34h-UKh2JTEShh38adFRONNP9QE,45
54
+ etlplus-0.5.3.dist-info/top_level.txt,sha256=aWWF-udn_sLGuHTM6W6MLh99ArS9ROkUWO8Mi8y1_2U,8
55
+ etlplus-0.5.3.dist-info/RECORD,,