malevich-coretools 0.3.17__tar.gz → 0.3.19__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.
Potentially problematic release.
This version of malevich-coretools might be problematic. Click here for more details.
- {malevich_coretools-0.3.17/malevich_coretools.egg-info → malevich_coretools-0.3.19}/PKG-INFO +1 -1
- malevich_coretools-0.3.19/VERSION +1 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/funcs/funcs.py +5 -4
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/utils.py +1 -1
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19/malevich_coretools.egg-info}/PKG-INFO +1 -1
- malevich_coretools-0.3.17/VERSION +0 -1
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/LICENSE +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/MANIFEST.in +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/README.md +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/__init__.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/abstract/__init__.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/abstract/abstract.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/abstract/pipeline.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/abstract/statuses.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/admin/__init__.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/admin/utils.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/batch/__init__.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/batch/utils.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/funcs/__init__.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/funcs/checks.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/funcs/helpers.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/__init__.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/config.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/const.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/helpers.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/kafka_utils.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/tools/__init__.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/tools/abstract.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/tools/vast.py +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools.egg-info/SOURCES.txt +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools.egg-info/dependency_links.txt +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools.egg-info/requires.txt +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools.egg-info/top_level.txt +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/pyproject.toml +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/requirements.txt +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/setup.cfg +0 -0
- {malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/setup.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.3.19
|
|
@@ -10,6 +10,7 @@ import requests
|
|
|
10
10
|
from requests.models import Response
|
|
11
11
|
|
|
12
12
|
from malevich_coretools.abstract.abstract import * # noqa: F403
|
|
13
|
+
from malevich_coretools.abstract.pipeline import Pipeline
|
|
13
14
|
from malevich_coretools.funcs.checks import check_profile_mode
|
|
14
15
|
from malevich_coretools.secondary import Config, model_from_json, show_logs_func
|
|
15
16
|
from malevich_coretools.secondary.const import * # noqa: F403
|
|
@@ -457,12 +458,12 @@ def get_userPipelines_mapIds(*args, **kwargs) -> ResultIdsMap:
|
|
|
457
458
|
return model_from_json(send_to_core_get(USER_PIPELINES_MAP_IDS, *args, **kwargs), ResultIdsMap)
|
|
458
459
|
|
|
459
460
|
|
|
460
|
-
def get_userPipelines_id(id: str, *args, **kwargs) ->
|
|
461
|
-
return model_from_json(send_to_core_get(USER_PIPELINES_ID(id, None), *args, **kwargs),
|
|
461
|
+
def get_userPipelines_id(id: str, *args, **kwargs) -> Pipeline:
|
|
462
|
+
return model_from_json(send_to_core_get(USER_PIPELINES_ID(id, None), *args, **kwargs), Pipeline)
|
|
462
463
|
|
|
463
464
|
|
|
464
|
-
def get_userPipelines_realId(id: str, *args, **kwargs) ->
|
|
465
|
-
return model_from_json(send_to_core_get(USER_PIPELINES_REAL_ID(id), *args, **kwargs),
|
|
465
|
+
def get_userPipelines_realId(id: str, *args, **kwargs) -> Pipeline:
|
|
466
|
+
return model_from_json(send_to_core_get(USER_PIPELINES_REAL_ID(id), *args, **kwargs), Pipeline)
|
|
466
467
|
|
|
467
468
|
|
|
468
469
|
def post_userPipelines(data: UserTask, wait: bool, *args, **kwargs) -> Alias.Id:
|
|
@@ -1918,7 +1918,7 @@ def get_pipeline(
|
|
|
1918
1918
|
batcher = Config.BATCHER
|
|
1919
1919
|
if batcher is not None:
|
|
1920
1920
|
return batcher.add("getPipelineById", vars={"id": id}, result_model=Pipeline)
|
|
1921
|
-
return f.
|
|
1921
|
+
return f.get_userPipelines_id(id, auth=auth, conn_url=conn_url)
|
|
1922
1922
|
|
|
1923
1923
|
|
|
1924
1924
|
def get_pipeline_real(
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.3.17
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/abstract/__init__.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/abstract/abstract.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/abstract/pipeline.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/abstract/statuses.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/admin/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/batch/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/funcs/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/__init__.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/config.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/const.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/helpers.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/secondary/kafka_utils.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/tools/__init__.py
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools/tools/abstract.py
RENAMED
|
File without changes
|
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools.egg-info/requires.txt
RENAMED
|
File without changes
|
{malevich_coretools-0.3.17 → malevich_coretools-0.3.19}/malevich_coretools.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|