kodexa 6.3.35691157156__tar.gz → 6.3.35730250009__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-6.3.35691157156 → kodexa-6.3.35730250009}/PKG-INFO +1 -1
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/platform/client.py +3 -6
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/pyproject.toml +1 -1
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/LICENSE +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/README.md +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/assistant/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/assistant/assistant.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/connectors/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/connectors/connectors.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/model/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/model/base.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/model/model.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/model/objects.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/model/persistence.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/pipeline/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/pipeline/pipeline.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/platform/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/platform/kodexa.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/ast.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/core.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/lexrules.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/lextab.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/lextab.pyi +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/parserules.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/parserules.pyi +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/parsetab.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/selectors/parsetab.pyi +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/spatial/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/spatial/azure_models.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/spatial/bbox_common.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/spatial/table_form_common.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/steps/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/steps/common.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/testing/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/testing/test_components.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/testing/test_utils.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/training/__init__.py +0 -0
- {kodexa-6.3.35691157156 → kodexa-6.3.35730250009}/kodexa/training/train_utils.py +0 -0
@@ -211,9 +211,9 @@ class ComponentEndpoint(ClientEndpoint, OrganizationOwned):
|
|
211
211
|
:param version:
|
212
212
|
:return:
|
213
213
|
"""
|
214
|
-
filters = ["slug
|
214
|
+
filters = ["slug: '" + slug + "'"]
|
215
215
|
if version is not None:
|
216
|
-
filters.append("version
|
216
|
+
filters.append("version: '" + version + "'")
|
217
217
|
component_page = self.list(filters=filters)
|
218
218
|
if component_page.empty:
|
219
219
|
return None
|
@@ -230,7 +230,6 @@ class ComponentEndpoint(ClientEndpoint, OrganizationOwned):
|
|
230
230
|
params["sort"] = sort
|
231
231
|
|
232
232
|
if filters is not None:
|
233
|
-
params["legacyFilter"] = True
|
234
233
|
params["filter"] = filters
|
235
234
|
|
236
235
|
while True:
|
@@ -259,7 +258,6 @@ class ComponentEndpoint(ClientEndpoint, OrganizationOwned):
|
|
259
258
|
params["sort"] = sort
|
260
259
|
|
261
260
|
if filters is not None:
|
262
|
-
params["legacyFilter"] = True
|
263
261
|
params["filter"] = filters
|
264
262
|
|
265
263
|
list_response = self.client.get(url, params=params)
|
@@ -380,7 +378,6 @@ class EntitiesEndpoint:
|
|
380
378
|
params["sort"] = sort
|
381
379
|
|
382
380
|
if filters is not None:
|
383
|
-
params["legacyFilter"] = True
|
384
381
|
params["filter"] = filters
|
385
382
|
|
386
383
|
if self.organization is not None:
|
@@ -437,7 +434,7 @@ class OrganizationsEndpoint(EntitiesEndpoint):
|
|
437
434
|
:param slug:
|
438
435
|
:return:
|
439
436
|
"""
|
440
|
-
organizations = self.list(filters=["slug
|
437
|
+
organizations = self.list(filters=["slug: '" + slug + "'"])
|
441
438
|
if organizations.number_of_elements == 0:
|
442
439
|
return None
|
443
440
|
return organizations.content[0]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "kodexa"
|
3
|
-
version = "6.3.
|
3
|
+
version = "6.3.35730250009"
|
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
|