kodexa 7.0.8231693882__tar.gz → 7.0.8246792526__tar.gz
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.
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/PKG-INFO +1 -1
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/pipeline/pipeline.py +4 -1
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/pyproject.toml +1 -1
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/LICENSE +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/README.md +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/assistant/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/assistant/assistant.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/connectors/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/connectors/connectors.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/model/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/model/base.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/model/model.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/model/objects.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/model/persistence.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/pipeline/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/platform/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/platform/client.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/platform/interaction.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/platform/kodexa.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/ast.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/core.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/lexrules.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/lextab.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/lextab.pyi +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/parserules.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/parserules.pyi +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/parsetab.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/selectors/parsetab.pyi +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/spatial/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/spatial/azure_models.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/spatial/bbox_common.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/spatial/table_form_common.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/steps/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/steps/common.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/testing/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/testing/test_components.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/testing/test_utils.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/training/__init__.py +0 -0
- {kodexa-7.0.8231693882 → kodexa-7.0.8246792526}/kodexa/training/train_utils.py +0 -0
@@ -233,7 +233,7 @@ class PipelineStep:
|
|
233
233
|
"""
|
234
234
|
|
235
235
|
def __init__(
|
236
|
-
self, step, name=None, options=None, attach_source=False, step_type="ACTION"
|
236
|
+
self, step, name=None, options=None, attach_source=False, step_type="ACTION", conditional=None
|
237
237
|
):
|
238
238
|
if options is None:
|
239
239
|
options = {}
|
@@ -241,6 +241,7 @@ class PipelineStep:
|
|
241
241
|
self.name = name
|
242
242
|
self.options = options
|
243
243
|
self.step_type = step_type
|
244
|
+
self.conditional = conditional
|
244
245
|
|
245
246
|
if str(type(self.step)) == "<class 'type'>":
|
246
247
|
logger.info(f"Adding new step class {step.__name__} to pipeline")
|
@@ -284,6 +285,8 @@ class PipelineStep:
|
|
284
285
|
|
285
286
|
metadata["name"] = self.name
|
286
287
|
metadata["stepType"] = self.step_type
|
288
|
+
metadata["options"] = self.options
|
289
|
+
metadata["conditional"] = self.conditional
|
287
290
|
return metadata
|
288
291
|
except AttributeError as e:
|
289
292
|
raise Exception("All steps must implement to_dict() for deployment", e)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "kodexa"
|
3
|
-
version = "7.0.
|
3
|
+
version = "7.0.08246792526"
|
4
4
|
description = "Python SDK for the Kodexa Platform"
|
5
5
|
authors = ["Austin Redenbaugh <austin@kodexa.com>", "Philip Dodds <philip@kodexa.com>", "Romar Cablao <rcablao@kodexa.com>", "Amadea Paula Dodds <amadeapaula@kodexa.com>"]
|
6
6
|
readme = "README.md"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|